FastJson解析对象及对象数组--项目经验
生活随笔
收集整理的这篇文章主要介绍了
FastJson解析对象及对象数组--项目经验
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
第一次使用json,解析工具为FastJson,使用语言为java
常见的json解析实例,以map为例:
Map<String,String> map=new HashMap<String,String>(); map.put("code","0"); map.put("message","ok"); String json=JSON.toJSONString(map); System.out.println(json); String code=JSONObject.fromObject(json).getString("code"); String message=JSONObject.fromObject(json).getString("message"); System.out.println("code="+code+",message"+message);1. Json解析出字符串
String rootnode = JSONObject.fromObject(jsonData).from("attribute");
String childnode= JSONObject.fromObject(rootnode).from("attribute");
以此类推
2. Json解析出单个对象
JSON.parseObject(jsonString,user.class);
3.Json解析出多个对象
List<user> list=new ArrayList<user>(JSONArray.parseArray(jsonString,user.class));
转载于:https://www.cnblogs.com/davidwang456/p/4141056.html
总结
以上是生活随笔为你收集整理的FastJson解析对象及对象数组--项目经验的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: jboss 7 as1 日志配置
- 下一篇: spring beans源码解读之--B