I have a JSON string that I use for my iOS app and it works fine, however it doesn't have a key on the array. I don't know how to call JSONArray in this case, can anybody make a suggestion besides changing my JSON to be different for the Android App (I'd like to use the same script for all my apps). Here is my JSON String:

[{"url":"uploads\/audio\/A Cold One.mp3", "title":"A Cold One"}, ...]

And my code looks like this:

JSONObject root = new JSONObject(result);
JSONArray jItems = root.getJSONArray("");

My exception:

Download stopped: org.json.JSONException: Value [{"url":"uploads\/audio\/A Cold One.mp3", "title:"A Cold One"}, ...]

Thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

use this

JSONArray jItems  = new JSONArray(yourJSONString);

yourJSONString should start with '['. in your case the yourJSONString is result. you don't have to convert it in to JSONObject in between.

HTH.

link|improve this answer
Thanks! that worked, exactly what I needed. – Alan Moore Sep 18 '11 at 14:54
feedback

You are hitting an error not because you have accessed the JSON incorrectly, your JSON string is malformed.

Yours:

[{"url":"uploads\/audio\/A Cold One.mp3", "title:"A Cold One"}, ...]

Correct version:

[{"url":"uploads\/audio\/A Cold One.mp3", "title":"A Cold One"}, ...]
link|improve this answer
Sorry, my fault for a bad copy -- you are correct but that's not actually the error in this case, I'll fix my post! – Alan Moore Sep 18 '11 at 14:50
Hi Alan, in which case Kumar is correct. json.org/javadoc/org/json/…) – Chin Boon Sep 18 '11 at 14:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.