(二)fastJson和其他类型转换
2021-05-06 23:29
标签:json 用户 gets san ref fas fast out 对象 (二)fastJson和其他类型转换 标签:json 用户 gets san ref fas fast out 对象 原文地址:https://www.cnblogs.com/zhougongjin/p/12093326.html//String to Json
String str = "{\"语文\":\"88\",\"数学\":\"78\",\"计算机\":\"99\"}";
JSONObject jsonObject;
jsonObject = JSONObject.parseObject(str);
System.out.println("jsonObject: "+jsonObject);
// Json to String
String chinessName = jsonObject.getString("语文");
System.out.println("chinessName: "+chinessName);
//对象转json字符串简单,就一个toJSONString(对象);方法
User user = new User();
user.setName("zhangsan");
user.setPassword("123");
user.setAge(18);
String string = JSON.toJSONString(user);
System.out.println("user.toString(): "+user.toString());
System.out.println("JSON.toJSONString(user): "+string);
System.out.println("..................................................");
//List的json字符串转会list对象,只需要使用parseArray(str,类名.class);
User user1 = new User();
user1.setName("lisi");
user1.setPassword("321");
user1.setAge(17);
List
文章标题:(二)fastJson和其他类型转换
文章链接:http://soscw.com/index.php/essay/83434.html