码迷,mamicode.com
首页 > 编程语言 > 详细

FastJson JSON对象及JavaBean之间的相互转换

时间:2018-02-05 15:08:38      阅读:2279      评论:0      收藏:0      [点我收藏+]

标签:相互   json   oid   obj   student   enc   ext   json对象   new t   

示例1:JSON格式字符串与javaBean之间的转换。

json字符串与javaBean之间的转换推荐使用 TypeReference<T> 这个类,使用泛型可以更加清晰

 /**
     * json字符串-简单对象与JavaBean_obj之间的转换
     */
    public static void testJSONStrToJavaBeanObj(){

        Student student = JSON.parseObject(JSON_OBJ_STR, new TypeReference<Student>() {});

        //Student student1 = JSONObject.parseObject(JSON_OBJ_STR, new TypeReference<Student>() {});
//因为JSONObject继承了JSON,所以这样也是可以的

    }

示例2.2-json字符串-数组类型与javaBean之间的转换

  public static void testJSONStrToJavaBeanList(){
        
        ArrayList<Student> students = JSON.parseObject(JSON_ARRAY_STR, new TypeReference<ArrayList<Student>>() {});


        ArrayList<Student> students1 = JSONArray.parseObject(JSON_ARRAY_STR, new TypeReference<ArrayList<Student>>() {});

//因为JSONArray继承了JSON,所以这样也是可以的 }

 

对象转Json

C2Result c1 = new  C2Result();
c1.setErrorCode("0");
c1.setErrorText("成功");
String result = JSONObject.toJSON(c1).toString();

 

FastJson JSON对象及JavaBean之间的相互转换

标签:相互   json   oid   obj   student   enc   ext   json对象   new t   

原文地址:https://www.cnblogs.com/lyon91/p/8417554.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!