遍历json数组

//遍历json数组

String json1 = "{data:[{name:‘Wallace‘},{name:‘Grommit‘}]}";

jsonObjSplit = new JSONObject(json1);

JSONArray ja = jsonObjSplit.getJSONArray("data");

for (int i = 0; i < ja.length(); i++) {

  JSONObject jo = (JSONObject) ja.get(i);

  System.out.println(jo.get("name"));

}

//JSONObject遍历json对象

String json2 = "{name:‘Wallace‘,age:15}";

jsonObj = new JSONObject(json2);

for (Iterator iter = jsonObj.keys(); iter.hasNext();){

  String key = (String)iter.next();

  System.out.println(jsonObj .getString(Key));

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。