I am making a facebook app .I am able to fetch a user's friend list using the graph api.The friend list is returned in the form of JSON.How to parse it is using java?I have the json simple library but i am having trouble using it.
|
closed as not a real question by casperOne♦ Jun 28 '12 at 0:18
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Here:
You should be able to know if the returned response is an array or object based on what you asked for. EditIn the case you get a json object which contains an array:
The JSONObject supports java.util.Map interface and JSONArray the supports java.util.List interface. |
|||||||||||
|
|
edit: This is for the full JSON library not the org.json simple library. Please look at Nitzan's answer for the org.json simple library You would need to get a value from the
If you are given a JSONArray, you would need to get the correct JSONObject from the JSONArray by doing this:
replace 0 with the |
|||||||||||
|