List 转 JSONArray

// 通过JSONPath获取其中数据,也可以说自己生成的List
List<JSONObject> caseList = JsonPath.read(resStr, "$.result.case");
// 转换为JSONArray
JSONArray cases = JSONArray.parseArray(JSON.toJSONString(caseList));

JSONArray 转 List

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

String 转 List

String str = "";
List<T> list = JSONObject.parseArray(str, T.class);
05-11 19:48