非标准JSON解析

Posted 萝卜条条

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了非标准JSON解析相关的知识,希望对你有一定的参考价值。

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解析的主要内容,如果未能解决你的问题,请参考以下文章

Json-lib工具包解析小数自动四舍五入导致小数值丢失问题解决

JSON Web Signature 规范解析

国民体质测定标准手册及标准解析成JSON文件计算分数,java解析excel文件

替换标准 Android JSON 解析器以获得更好的性能?

[Python3]JSON解析

json解析错误怎么办?