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've JSON data from facebook:

String response = facebook.request("me/friends?fields=username",bundle,"GET");

And data from the user's contacts:

ArrayList<HashMap<String, String>> data = getContacts();

I'm looking to iterate through both response and data. How could this be done most efficiently?

share|improve this question

1 Answer

I recommend you read this great tutorial:

http://www.vogella.com/articles/AndroidJSON/article.html

Although I prefer to use the Jackson library. Here is a tutorial:

http://wiki.fasterxml.com/JacksonInFiveMinutes

If you know Spanish in androcode.es can find some tutorials about JSON written by me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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