I am trying to construct a JSONArray from a String, and extract the JSONObjects from inside it. Here is my code:

String jsonStr = "[{\"name\" : \"John Doe\",\"gender\":\"male\",\"age\":40},{\"name\" : \"Jane Doe\",\"gender\":\"female\",\"age\":30}]";

JSONArray jsonArr = new JSONArray(jsonStr);

I get the following error on the line JSONArray is declared:

Exception in thread "main" java.lang.RuntimeException: Uncompilable source code
        at org.json.JSONTokener.nextValue(JSONTokener.java:319)
        at org.json.JSONArray.<init>(JSONArray.java:119)
        at org.json.JSONArray.<init>(JSONArray.java:146)

I am thinking it should be possible to have an array of JSONObjects. Is there something wrong with the way I have constructed the string ? Any help is appreciated.

Thanks!

link|improve this question
feedback

2 Answers

You're missing the trailing ]

link|improve this answer
+1, but he's using java not javascript. single quotes are chars – Joe Tuskan Sep 10 '11 at 1:50
Oh, good call. It wasn't tagged Java/Javascript, and I've always used JSON in JS, so I assumed JS heh. Is it possible to do it the other way round then, or will Java try and parse the keys as chars there? And totally totaly unrelated, but nice name :) – Joe Sep 10 '11 at 1:52
Sorry about the typo with the missing ]. I am getting the same error with it as well. – ds13 Sep 10 '11 at 1:54
That's a good question, beyond my limited knowledge. I would assume it would error because double quotes are the standard for JSON. – Joe Tuskan Sep 10 '11 at 1:55
feedback
 String jsonStr =" {\"array\": [{\"name\": \"John Doe\",\"gender\": \"male\",\"age\":40},{\"name\": \"Jane Doe\",\"gender\": \"female\",\"age\": 30 }]}";

this string is fine

if you want to validate any JSON syntax data this can help you

link|improve this answer
Getting the same error with the ] as well. – ds13 Sep 10 '11 at 1:55
According to the docs, the string should start with [ and end with ]. If the code you posted works, it's probably worth submitting a bug report or whatever :) – Joe Sep 10 '11 at 2:04
see my update :) – Nammari Sep 10 '11 at 2:06
Its funny how its possible to initialize a JSONObject from a String, but not a JSONArray of JSONObject. – ds13 Sep 10 '11 at 3:09
Thanks Nammari, for the link. If I remove the escape character "\" from the string, JSONLint says its a valid JSON string. – ds13 Sep 10 '11 at 3:17
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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