0

我刚开始研究 android 应用程序开发。对于我的第一个测试应用程序,我想从公共休息 api 中获取一个 json 对象,例如 Twitter。

有没有办法将 JSON 反序列化为匿名对象?还是我必须手动解析它并使用键值对或类似的东西创建一个字典?

谢谢

4

1 回答 1

0
import org.json.JSONException;
import org.json.JSONObject;
import org.json.JSONArray;

...

final String string = getWebString(webHelper, ctx, args);

try {
    return new JSONArray(string);
} catch (JSONException e) {
    Log.e(TAG, "Malformated JSON string: " + string + ", e = " + e);
    Utils.where(e);
    return null;
}
于 2012-06-17T04:36:17.693 回答