fasnjson 转换

1.fastjson---List转JSONArray

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


2.fastjson---JSONArray转List

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

 

3.fastjson---字符串转List

String str = "";
List<T> list = JSONObject.parseArray(str,T.class);

 

4.fastjson---list集合转换为json字符串

JSON.stringify(list)
posted on 2021-03-17 11:14  RedBackIce  阅读(81)  评论(0编辑  收藏  举报