Tag: jsonexception

从string转换为json对象android

我正在开发一个Android应用程序。 在我的应用程序,我必须将string转换为Json对象,然后parsing值。 我检查了一个解决scheme,并在这里find类似的问题链接 解决scheme就是这样 `{"phonetype":"N95","cat":"WP"}` JSONObject jsonObj = new JSONObject("{\"phonetype\":\"N95\",\"cat\":\"WP\"}"); 我在我的代码中使用相同的方式。 我的string是 {"ApiInfo":{"description":"userDetails","status":"success"},"userDetails":{"Name":"somename","userName":"value"},"pendingPushDetails":[]} string mystring= mystring.replace("\"", "\\\""); 而replace后,我得到了这样的结果 {\"ApiInfo\":{\"description\":\"userDetails\",\"status\":\"success\"},\"userDetails\":{\"Name\":\"Sarath Babu\",\"userName\":\"sarath.babu.sarath babu\",\"Token\":\"ZIhvXsZlKCNL6Xj9OPIOOz3FlGta9g\",\"userId\":\"118\"},\"pendingPushDetails\":[]} 当我执行JSONObject jsonObj = new JSONObject(mybizData); 我得到了下面的jsonexception org.json.JSONException: Expected literal value at character 1 of 请帮我解决我的问题。