码迷,mamicode.com
首页 > Web开发 > 详细

遍历json数组

时间:2014-10-03 13:34:14      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   for   sp   c   on   r   new   

//遍历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));

 

遍历json数组

标签:style   color   ar   for   sp   c   on   r   new   

原文地址:http://www.cnblogs.com/zhujiasheng/p/4004885.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!