json和map互转
String mapStr = JSONObject.toJSONString(map);
HashMap hashMap = JSON.parseObject(mapStr , HashMap.class);
同理json和其他一些java对象互转
String listString = JSONObject.toJSONString(oldArrayList);
ArrayList newArrayList = JSON.parseObject(listString,ArrayList.class);