首页 > 移动平台 > 详细

com.fasterxml.jackson.databind.ObjectMapper. .readValue .convertValue

时间:2018-07-23 14:01:40      阅读:621      评论:0      收藏:0      [点我收藏+]

 

    String str="{\"student\":[{\"name\":\"leilei\",\"age\":23},{\"name\":\"leilei02\",\"age\":23}]}";
    Student stu = null;
    List<Student> list = null;
    try {
        ObjectMapper objectMapper=new ObjectMapper();
        StudentList studentList=objectMapper.readValue(str, StudentList.class);
        list=studentList.getStudent();
    } catch (Exception e) {
        e.printStackTrace();
    } 
    list.streams.forEach(System::out::println)

 

ArrayList<Student> list=new ArrayList<Student>();
Student s1=new Student(); s1.setName("leilei01"); s1.setAge(23);
Student s2=new Student(); s2.setName("leilei02"); s2.setAge(23);
list.add(s1); list.add(s2);
StringWriter str=new StringWriter();
ObjectMapper objectMapper=new ObjectMapper();
try {
    objectMapper.writeValue(str, list);
} catch (Exception e) {
    e.printStackTrace();
}   
System.out.println(str);

 

com.fasterxml.jackson.databind.ObjectMapper. .readValue .convertValue

原文:https://www.cnblogs.com/hahajava/p/9354116.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!