<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.83</version>
</dependency>
使用fastjson依赖
JSONObject jsonObject = JSON.parseObject(s);
这个jsonObject本质就是一个map,直接get获取值即可,获取到的类型是Object,需要自己转换
jsonObject.get("data");


















