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

json和对象、list互转

时间:2016-06-30 14:20:45      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

1、把对象,list转成json:

import com.alibaba.fastjson.JSONObject;

Object obj = new Object(); // ... String objJson = JSONObject.toJSONString(obj); List<Object> list = new ArrayList<>(); // ..... String listJson = JSONObject.toJSONString(list); // ...

2、json对象再转成对象或者list

import com.alibaba.fastjson.JSONObject;

Object obj = JSONObject.parseObject(headJson, Object .class);


List<Object> offList = JSONObject.parseArray(offListJson, Object.class);

 

此时即可。

 

json和对象、list互转

标签:

原文地址:http://www.cnblogs.com/gmq-sh/p/5629689.html

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