fastjson List转JSONArray以及JSONArray转List
Posted 天天天12345
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fastjson List转JSONArray以及JSONArray转List相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章