0

我有来自 facebook 的 JSON 数据:

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

以及来自用户联系人的数据:

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

我正在寻找遍历responsedata。怎样才能最有效地做到这一点?

4

1 回答 1

1

我建议你阅读这个很棒的教程:

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

虽然我更喜欢使用 Jackson 库。这是一个教程:

http://wiki.fasterxml.com/JacksonInFiveMinutes

如果你在 androcode.es 中懂西班牙语,可以找到一些我写的关于 JSON 的教程。

于 2012-09-03T13:58:58.577 回答