fastjson List转JSONArray以及JSONArray转List

转:https://blog.csdn.net/u014736629/article/details/80521581

 

 

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);
 

 

posted @ 2018-10-25 13:31  这个名字想了很久~  阅读(34099)  评论(0编辑  收藏  举报