码迷,mamicode.com
首页 > Web开发 > 详细

fastJson

时间:2019-10-16 21:45:05      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:hone   ring   Staff   one   code   seo   rgs   fast   name   

public class jsonTest {
    public static void main(String[] args) {
        /**
         * json字符串转化为对象
         */
        String jsonString = "{name:‘Antony‘,age:‘12‘,sex:‘male‘,telephone:‘88888‘}";
        Staff staff = JSON.parseObject(jsonString, Staff.class);
        System.out.println(staff.toString());
 
        /**
         * 对象转化为json字符串
         */
        String jsonStr = JSON.toJSONString(staff);
        System.out.println(jsonStr);
    }
}

 

fastJson

标签:hone   ring   Staff   one   code   seo   rgs   fast   name   

原文地址:https://www.cnblogs.com/lovemeng1314/p/11688494.html

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