我想要解析json url,我的json url包含以下结构
{"content":{"item":[{"category":"xxx"},{"category":"yy"} ]}}
如何阅读这个结构,任何人都知道为此提供示例json解析器。
谢谢
答案 0 :(得分:1)
此代码将帮助您解析您的json。
String jsonStr = "{\"content\":{\"item\":[{\"category\":\"xxx\"},{\"category\":\"yy\"} ]}}";
try {
ArrayList<String> categories = new ArrayList<String>();
JSONObject obj = new JSONObject(jsonStr);
JSONObject content = obj.getJSONObject("content");
JSONArray array = content.getJSONArray("item");
for(int i = 0, count = array.length();i<count;i++)
{
JSONObject categoty = array.getJSONObject(i);
categories.add(categoty.getString("category"));
}
} catch (JSONException e) {
e.printStackTrace();
}
答案 1 :(得分:0)
JSONObject可以进行解析。
答案 2 :(得分:0)
您需要使用org.json的包。 例如:
对象:
JSONObject json = new JSONObject(json_string);
对于数组:
JSONArray json = new JSONArray(json_string);