FastJson 对象、JSON、字符串、Map 之间的互转

  1. 对象与字符串之间的互转
// 将对象转换成为字符串
String str = JSON.toJSONString(infoDo);
// 字符串转换成为对象
InfoDo infoDo = JSON.parseObject(strInfoDo, InfoDo.class);
  1. 对象集合与字符串之间的互转
// 将对象集合转换成为字符串
String users = JSON.toJSONString(users);
// 将字符串转换成为对象集合
List<User> userList = JSON.parseArray(userStr, User.class); 
  1. 字符串互转JSONObject
// String 转 Json对象
JSONObject jsonObject = JSONObject.parseObject(jsonString);
// json对象转string
JSONObject jsonObject = JSONObject.parseObject(str);//json对象转字符串 
String jsonString = jsonObject.toJSONString();
  1. map与字符串之间互转
//字符串转map
JSONObject  jsonObject = JSONObject.parseObject(str);
Map<String,Object> map = (Map<String,Object>)jsonObject;//    //json对象转Map
//map转字符串
String jsonString = JSON.toJSONString(map);
  1. Map 转 Json对象
//map转json对象    
Map<String,Object> map = new HashMap<>();
map.put("age", 24);
map.put("name", "cool_summer_moon");
JSONObject json = new JSONObject(map);  
//json对象转Map   
Map<String,Object> map = (Map<String,Object>)jsonObject;