如您所见,我有一个json。我找回了它。但我可以检索类别的 ID、名称。但我必须将我的项目更改为对象。那么,我该如何迭代我的项目。还是有其他方法可以做到这一点?
问问题
63 次
1 回答
0
Here I just get the ID from Jsonarray
,use this way to get the other jsonobject
element inside the jsonarray
do like that for rest of the elements.
try{
ArrayList<String>ID=new ArrayList<String>();
JSONObject jObject= new JSONObject(JsonString);
JSONArray menuObject = new JSONArray(jObject.getString("category"));
JSONArray menuObject1;
for(int i=0;i<menuObject.length;i++){
menuObject1 = new JSONArray(jObject.getString("project"));
}
for(int i=0;i<menuObject1.length;i++){
String ID= menuObject.getJSONObject(i).getString("ID");
ID.add(ID);
}
}catch(Exception e){
}
于 2013-12-20T15:22:50.390 回答