{
"category": [
[
"Item 1"
],
[
"Item 2"
],
[
"Item 3"
],
[
"Item 4"
],
[
"Item 5"
]
]
}
如何使用JSON解析解析此类数据?项目可以在将来添加到类别中。 我是JSON解析的新手。所以请详细解释我。 提前谢谢。
答案 0 :(得分:0)
// try this way,hope this will help you...
try{
JSONArray category = new JSONObject (jsonRespone).getJSONArray("category");
for (int i=0;i<category.length();i++){
System.out.println(i+" Value Is :"+category.getJSONArray(i).getString(0));
}
}catch (Throwable e){
e.printStackTrace();
}