字符串转成JSONArray和JSONObject遍历

Posted 城市小农民

tags:

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

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遍历
JSONObject jsonObject = new JSONObject(jsonString);
        Iterator iterator = jsonObject.keys();
while(iterator.hasNext()){
            key = (String) iterator.next();
        value = jsonObject.getString(key);
}

以上是关于字符串转成JSONArray和JSONObject遍历的主要内容,如果未能解决你的问题,请参考以下文章

java 字符串转成 json 数组并且遍历

JSONObject和JSONArray的基本使用

JSONArray和JSONObject的简单使用

JSONObject和JSONArray解析和构造json字符串

jsonarray转成对象中的字段不一样

JAVA对象JSON数据互相转换的常见情况