一、转map
JSON import com.alibaba.fastjson.JSON;
Map<String,String> map = JSON.parseObject(str, HashMap.class);
二、转实体类
Test test= JSON.parseObject(str, Test.class);
三、转JSONObject
JSONObject jsonObject = JSON.parseObject(str);
四、转List
List<KeyValue> list= JSON.parseArray(str, KeyValue.class);
五、List <Object> 转List <String>
List<String> sList = objectList.stream().map(obj-> (String) obj).collect(Collectors.toList())