I have a string like below
{"226167":"hawaiii","3193":"california"}
Can I use some java method to get all the key values (226167,3193 ) in a List object. If yes How it's done...?
|
I have a string like below
Can I use some java method to get all the key values (226167,3193 ) in a List object. If yes How it's done...? |
||||
| show 2 more comments |
You need the JSON.Org library to run this (http://www.json.org/javadoc/org/json/JSONTokener.html) Regards, Stéphane |
|||||||
|
JSONTokener(what a strange name!) andJSONObjectare from the same library! How can you have access to one, but not the other? – Joachim Sauer Aug 17 '11 at 10:39