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

字符串转成JSONArray和JSONObject遍历

时间:2019-02-21 10:58:44      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:comment   i++   json   comm   ace   word   lin   container   转化   

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遍历

标签:comment   i++   json   comm   ace   word   lin   container   转化   

原文地址:https://www.cnblogs.com/chengshixiaonongming/p/10410987.html

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