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

fastjson List转JSONArray以及JSONArray转List

时间:2019-04-10 10:31:04      阅读:1810      评论:0      收藏:0      [点我收藏+]

标签:tps   ntc   tco   字符   article   原创   ring   tail   .net   

1.fastjson  List转JSONArray
List<T> list = new ArrayList<T>();
JSONArray array= JSONArray.parseArray(JSON.toJSONString(list));


2.fastjson  JSONArray转List
JSONArray array = new JSONArray();
List<EventColAttr> list = JSONObject.parseArray(array.toJSONString(), EventColAttr.class);


3.fastjson  字符串转List
String str = "";
List<T> list = JSONObject.parseArray(str,T.class);
---------------------
作者:可爱的老狗比
来源:CSDN
原文:https://blog.csdn.net/u014736629/article/details/80521581
版权声明:本文为博主原创文章,转载请附上博文链接!

fastjson List转JSONArray以及JSONArray转List

标签:tps   ntc   tco   字符   article   原创   ring   tail   .net   

原文地址:https://www.cnblogs.com/lixxx/p/10681634.html

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