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

json 拼装空list、object

时间:2020-03-31 12:45:48      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:details   fast   zhang   tps   article   zha   fastjson   tail   span   

import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
 
public class FastJsonArrayTest {
    public static void main(String[] args) {
        JSONObject jo = new JSONObject();
        jo.put("name", null);
        jo.put("age", 123);
        jo.put("list", new JSONArray());
        jo.put("obj", new JSONObject());
        System.out.println(jo.toJSONString());
    }
}

 

打印结果:

{"age":123,"list":[],"obj":{}}

 

原文链接:https://blog.csdn.net/tengdazhang770960436/article/details/48930661

json 拼装空list、object

标签:details   fast   zhang   tps   article   zha   fastjson   tail   span   

原文地址:https://www.cnblogs.com/lvchengda/p/12604076.html

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