当前位置: 代码迷 >> JavaScript >> JSONObject 与 JSONArray 的运用
  详细解决方案

JSONObject 与 JSONArray 的运用

热度:636   发布时间:2012-06-26 10:04:13.0
JSONObject 与 JSONArray 的使用
//遍历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));
  相关解决方案