fastjson json字符串转list<xxx>

List<xxx> list = JSON.parseObject(jsonString, new TypeReference<List< xxx >>() {});

例如 :List<Map<String, String>> pids=JSON.parseObject(jsonString, new TypeReference<List<Map<String, String>>>() {});

原文地址:https://www.cnblogs.com/wdp1990/p/12725870.html