Java常用API
一. fastjson
1.List集合转json字符串
String json = JSON.toJSONString(demoList);
2.json字符串转List集合
List<Demo> demoList = JSONObject.parseArray(json, Demo.class);
3.Object对象转json字符串
String json = JSON.toJSONString(demoObject);
4.json字符串转Object对象
Demo demo = JSONObject.parseObject(json, Demo.class);
5.Map集合转json字符串
String json = new JSONObject().toJSONString(demoMap);//demoMap存着一个user对象,是map集合格式
//可以根据4.把json字符串转为user对象,因为map集合无法直接转化成对象
0 条评论
登陆后才能评论哦~