上面的示例json数组,如何获取204、203和202?
不,当前的String
JSONObject代替
JSONArray。您应该使用JSONObject获取Iterator
。keys()如果内部JSONObject键动态为:
JSonObject issueObj = new JSonObject(jsonContent);Iterator iterator = issueObj.keys(); while(iterator.hasNext()){ String key = (String)iterator.next(); JSonObject issue = issueObj.getJSonObject(key); // get id from issue String _pubKey = issue.optString("id"); }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)