json对象的遍历

JSONArray jsonArraySeriesSubs = jsonObject.getJSONArray("seriesSub");
 
for(int i=0;i<jsonArraySeriesSubs.size();i++){
 
JSONObject jsonObjectSeriesSub = jsonArraySeriesSubs.getJSONObject(i);
 
}

猜你喜欢

转载自www.cnblogs.com/kingdaqi/p/8974826.html