fastjson List转JSONArray以及JSONArray转List

1.fastjson---List转JSONArray

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


2.fastjson---JSONArray转List

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

 

3.fastjson---字符串转List

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

 

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

JSON.stringify(list)

 

 


搬运自:https://blog.csdn.net/u014736629/article/details/80521581

你可能感兴趣的:(fastjson List转JSONArray以及JSONArray转List)