(1)List转换为JSONArray
List list =new ArrayList();
JSONArray array= JSONArray.parseArray(JSON.toJSONString(list));
(2)JSONArray转换为List
JSONArray array =new JSONArray();
List list = JSONObject.parseArray(array.toJSONString(), EventColAttr.class);
(1)List转换为JSONArray
List list =new ArrayList();
JSONArray array= JSONArray.parseArray(JSON.toJSONString(list));
(2)JSONArray转换为List
JSONArray array =new JSONArray();
List list = JSONObject.parseArray(array.toJSONString(), EventColAttr.class);