标签: json android-emulator
我需要解析一个JSON网址,我们该怎么做?
JSON
答案 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);