码迷,mamicode.com
首页 > 编程语言 > 详细

Json对象与Java对象转换

时间:2018-04-10 15:13:10      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:array   gif   string   ons   www.   对象   object   strong   toc   

推荐网站:

http://www.runoob.com/json/json-stringify.html

http://www.w3school.com.cn/json/json_eval.asp

转自:http://www.jb51.net/article/120737.htm

首先,引入 json-lib包

1、Json串转化为List对象:

JSONArray jsonArray = JSONArray.fromObject(jsonString);
List<Config> list = (List) JSONArray.toCollection(jsonArray,Class.class); 

2、Json串转化为Object对象

JSONObject jsonObject = JSONObject.fromObject(jsonString);
Object object = (Object) JSONObject.toBean(jsonObject, Object.class);

3、Json串转化为包含List对象的Object对象

JSONObject jsonObject = JSONObject.fromObject(jsonString);
Map<String, Class> listMap = new HashMap<String, Class>();
listMap.put("list", listObject.class);
Object object = (Object) JSONObject.toBean(jsonObject, Object.class, listMap);

PS:Object对象中可能包含了多个对象,对象中可能又包含了多个List对象互相嵌套。
只需要把所有的List对象值组装成Map对象即可,对应的key为List对象的属性名称。

Json对象与Java对象转换

标签:array   gif   string   ons   www.   对象   object   strong   toc   

原文地址:https://www.cnblogs.com/zhumengke/p/8778309.html

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