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

非标准JSON解析

时间:2016-12-07 23:01:36      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:ring   搞笑   tail   json   http   策略   i++   number   sof   

http://blog.csdn.net/superit401/article/details/51734591

  1. String category = "{‘v-soft-list‘:[{typecode:‘zhuanbi‘,gametype:‘赚币‘,count:5},{typecode:‘dongzuo‘,gametype:‘动作‘,count:12},{typecode:‘maoxian‘,gametype:‘冒险‘,count:14},{typecode:‘xiuxian‘,gametype:‘休闲‘,count:61},{typecode:‘zhili‘,gametype:‘智力‘,count:17},{typecode:‘gaoxiao‘,gametype:‘搞笑‘,count:6},{typecode:‘celue‘,gametype:‘策略‘,count:4},{typecode:‘qipai‘,gametype:‘棋牌‘,count:2}]}";  
  2.           
  3.         JSONObject jsonObject = JSONObject.fromObject(category);    
  4.         JSONArray jsArray = jsonObject.getJSONArray("v-soft-list");    
  5.         for(int i=0;i<jsArray.size();i++){    
  6.            JSONObject jsObject = (JSONObject)jsArray.get(i);    
  7.            String typeCode = (String)jsObject.get("typecode");    
  8.            System.out.println(typeCode);    
  9.         }   

非标准JSON解析

标签:ring   搞笑   tail   json   http   策略   i++   number   sof   

原文地址:http://www.cnblogs.com/robbinluobo/p/6142782.html

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