Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Can you post your code? What have you tried so far, and what's the trouble you are facing? – Nitzan Tomer Jun 27 '12 at 14:39
code.google.com/p/json-simple/wiki/DecodingExamples i tried to use the code in example 1.But it gives a ClassCastException..it showsorg.json.simple.JSONObject cannot be cast to org.json.simple.JSONArray – arpitsolanki Jun 27 '12 at 14:44

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.

2 Answers

up vote 2 down vote accepted

Here:

String response = .....

JSONArray arr = (JSONArray)JSONValue.parse(response);
JSONObject obj = (JSONObject)JSONValue.parse(response);

You should be able to know if the returned response is an array or object based on what you asked for.


Edit

In the case you get a json object which contains an array:

String response = .....

JSONObject obj = (JSONObject)JSONValue.parse(response);

if (obj.containsKey("xxxx")) {
    JSONArray arr = (JSONArray)obj.get("xxxx");
}

The JSONObject supports java.util.Map interface and JSONArray the supports java.util.List interface.

share|improve this answer
The friends list is very long.Should i keep iterating within a loop.In some cases there are objects within objects as well?How do i cope with it? – arpitsolanki Jun 27 '12 at 14:56
The first line of your code throws an exception.. org.json.simple.JSONObject cannot be cast to org.json.simple.JSONArray – arpitsolanki Jun 27 '12 at 14:58
It's not both lines, it's the first or the second, depending on what you're asking from the graph api. If you asking for an array then use the 1st, otherwise use the 2nd. – Nitzan Tomer Jun 27 '12 at 14:59
i have an object and that object contains an array – arpitsolanki Jun 27 '12 at 15:05
Oh. Edited my answer. – Nitzan Tomer Jun 27 '12 at 15:12
show 1 more comment

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 JSONObject. For example lets say your JSONObject is called jObj:

jObj.getString("parameter_name");

If you are given a JSONArray, you would need to get the correct JSONObject from the JSONArray by doing this:

JSONObject jObj = jArray.getJSONObject(0);

replace 0 with the JSONObject you would like to retrieve

share|improve this answer
I have a string containing JSON that i fetched from the graph api url.How to convert that into JSON Object? – arpitsolanki Jun 27 '12 at 14:46
I believe you can do JSONObject jObj = new JSONObject(resultString) Then retrieve the correct parameter from my answer above. – Ryan Jun 27 '12 at 14:48
There is no such constructor for JSONObject class – arpitsolanki Jun 27 '12 at 14:49
Hmm, i just tried it out and it seems to be compiling fine for me. Did you import org.json.JSONObject? – Ryan Jun 27 '12 at 14:51
i have the org.json simple library – arpitsolanki Jun 27 '12 at 14:52
show 3 more comments

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