I am working on an Android application. In my app I have to convert a string to JSON Object, then parse the values. I checked for a solution in Stackoverflow and found similar issue here link
The solution is like this
`{"phonetype":"N95","cat":"WP"}`
JSONObject jsonObj = new JSONObject("{"phonetype":"N95","cat":"WP"}");
I use the same way in my code . My string is
{"ApiInfo":{"description":"userDetails","status":"success"},"userDetails":{"Name":"somename","userName":"value"},"pendingPushDetails":[]}
string mystring= mystring.replace(""", "\"");
And after replace I got the result as this
{"ApiInfo":{"description":"userDetails","status":"success"},"userDetails":{"Name":"Sarath Babu","userName":"sarath.babu.sarath babu","Token":"ZIhvXsZlKCNL6Xj9OPIOOz3FlGta9g","userId":"118"},"pendingPushDetails":[]}
when I execute JSONObject jsonObj = new JSONObject(mybizData);
I am getting the below JSON exception
org.json.JSONException: Expected literal value at character 1 of
Please help me to solve my issue.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…