使用json-lib遍历数组与对象//遍历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));}
相关文章
- js for in 遍历对象与数组
- JSONObject与JSONArray的使用
- net.sf包JSONArray与JSONObject遍历
- 为什么数组[0]返回的对象与数组不同。首先使用jQuery,为什么不能使用.val()?
- JS中集合对象(Array、Map、Set)及类数组对象的使用与对比
- json:JSONObject与JSONArray的使用
- android JSONArray JSONObject 字符串转json数组 遍历json对象
- JS中集合对象(Array、Map、Set)及类数组对象的使用与对比
- JSON对象与JSON数组的长度和遍历方法
- Java JSONObject与JSONArray对象案例详解