我有来自 facebook 的 JSON 数据:
String response = facebook.request("me/friends?fields=username",bundle,"GET");
以及来自用户联系人的数据:
ArrayList<HashMap<String, String>> data = getContacts();
我正在寻找遍历response
和data
。怎样才能最有效地做到这一点?
我建议你阅读这个很棒的教程:
http://www.vogella.com/articles/AndroidJSON/article.html
虽然我更喜欢使用 Jackson 库。这是一个教程:
http://wiki.fasterxml.com/JacksonInFiveMinutes
如果你在 androcode.es 中懂西班牙语,可以找到一些我写的关于 JSON 的教程。