<!-- json -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.60</version>
</dependency>
1. json字符串转 JSONObject 对象
JSONObject obj = JSONObject.parseObject(rspStr);
2. 对象转JSON字符串
String jsonStr = JSONObject.toJSONString(map);
3. JSONObject 转对象
User map = JSONObject.parseObject(String.valueOf(jsonObject), User.class);