JsonArray和JsonObject遍历方法

Posted 萝卜条条

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JsonArray和JsonObject遍历方法相关的知识,希望对你有一定的参考价值。

http://blog.csdn.net/changhenshui1990/article/details/69950663

一:遍历JsonArray

 

String str = "[{name:‘a‘,value:‘aa‘},{name:‘b‘,value:‘bb‘},{name:‘c‘,value:‘cc‘},{name:‘d‘,value:‘dd‘}]" ;  // 一个未转化的字符串

JSONArray json = JSONArray.fromObject(str ); // 首先把字符串转成 JSONArray  对象

if(json.size()>0){
  for(int i=0;i<json.size();i++){
    JSONObject job = json.getJSONObject(i);  // 遍历 jsonarray 数组,把每一个对象转成 json 对象
    System.out.println(job.get("name")+"=") ;  // 得到 每个对象中的属性值
  }
}

一:遍历JsonObject

 

SONObject jsonObject = new JSONObject(s);
然后用Iterator迭代器遍历取值,建议用反射机制解析到封装好的对象中

JSONObject jsonObject = new JSONObject(jsonString);
        Iterator iterator = jsonObject.keys();
while(iterator.hasNext()){
            key = (String) iterator.next();
        value = jsonObject.getString(key);
}

 







以上是关于JsonArray和JsonObject遍历方法的主要内容,如果未能解决你的问题,请参考以下文章

android怎么遍历jsonobject

遍历jsonArray和jsonObject

字符串转成JSONArray和JSONObject遍历

JSONArray - JSONObject - 遍历

如何遍历保存到 JSONObject 的数据数组并将其放入 JSONArray?

java foreach是不是能对jsonarray进行遍历