欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-04-15 08:57:06
使用json-org包实现POJO和json的转换 这个jar包把对象转换成json超级舒服,所以顺便记录一下吧 把单个pojo对象转换成json对象 把多个pojo对象转成json数组 ......

使用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));