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

fastjson null 值处理

时间:2017-07-01 00:00:52      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:json.js   val   article   out   param   import   资料   cti   gas   

偶然用到fastjson转换json 在前台用js解析竟然某些字段没有,曾经用过gson。联想到是不是相似gson默认将null值不显示了,找了下资料果真如此

直接上代码吧

import java.util.HashMap;
import java.util.Map;

import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.serializer.SerializerFeature;


public class Test2 {

    /**
     * @param args
     */
    public static void main(String[] args) {

        /*
         * QuoteFieldNames———-输出key时是否使用双引號,默觉得true 
           WriteMapNullValue——–是否输出值为null的字段,默觉得false 
           WriteNullNumberAsZero—-数值字段假设为null,输出为0,而非null 
           WriteNullListAsEmpty—–List字段假设为null,输出为[],而非null 
           WriteNullStringAsEmpty—字符类型字段假设为null,输出为”“,而非null 
           WriteNullBooleanAsFalse–Boolean字段假设为null,输出为false,而非null
         */



        Map < String , Object > jsonMap = new HashMap< String , Object>();  
        jsonMap.put("xyw",1);  
        jsonMap.put("123","");  
        jsonMap.put("xuyw",null);  
        jsonMap.put("xywa","css");  

        String str = JSONObject.toJSONString(jsonMap);  
        System.out.println(str);

        String str2 = JSONObject.toJSONString(jsonMap,SerializerFeature.WriteMapNullValue);  
        System.out.println(str2);
    }

}

输出结果

{"123":"","xyw":1,"xywa":"css"}
{"123":"","xuyw":null,"xyw":1,"xywa":"css"}

fastjson null 值处理

标签:json.js   val   article   out   param   import   资料   cti   gas   

原文地址:http://www.cnblogs.com/mthoutai/p/7100785.html

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