如何解析URL中的json?

时间:2011-05-02 12:01:39

标签: json android-emulator

我需要解析一个JSON网址,我们该怎么做?

2 个答案:

答案 0 :(得分:0)

这里描述了解析json所需的所有信息:

http://www.json.org/

答案 1 :(得分:0)

http://developer.android.com/reference/org/json/JSONObject.html

对象:

JSONObject json = new JSONObject(json_string);

对于数组:

JSONArray json = new JSONArray(json_string);