首页 > Web开发 > 详细

使用json-org包实现POJO和json的转换

时间:2018-10-05 20:58:18      阅读:140      评论:0      收藏:0      [点我收藏+]

使用json-org包实现POJO和json的转换

这个jar包把对象转换成json超级舒服,所以顺便记录一下吧

把单个pojo对象转换成json对象

        Student student = new Student("2015551404","熊大");
        JSONObject object = new JSONObject(student);
        System.out.println(object.toString(2));

 

把多个pojo对象转成json数组

        Student student = new Student("2015551404","熊大");
        Student student1 = new Student("2015551405", "孙嘉宁");
        ArrayList<Student> list = new ArrayList<>();
        list.add(student);
        list.add(student1);
        JSONArray array = new JSONArray(list);
        System.out.println(array.toString(2));

 

使用json-org包实现POJO和json的转换

原文:https://www.cnblogs.com/xtuxiongda/p/9745738.html

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