I'm fairly new to programming, and I'm an intern working to develop a Blackberry App. So, I apologize in advance if I use any wrong terminology.
I make a HTTP Request for all of the friends of a particular user, and get a JSON response in this JSON array format.
{"users": [{"username": "jonbob", "first_name": "Jon", "last_name": "Bob", "phone": "5555555555", "full_name": "Jon Bob", "id": 1}, {"username": "joesmith", "first_name": "Joe", "last_name": "Smith", "phone": "5555555555", "full_name": "Joe Smith", "id": 2}]}
I'm using the org.json parsing library. I'm trying to create a Blackberry list containing all of the User's Friends (like an address book). But I am unsure how to acess the JSON Array with this org.json library. I want to create a Java Array with only the full_names of all the friends. How would you go about parsing this response to accomplish that?
Thanks