用fastJson进行map转Json操作时将map中空值保留

用fastJson进行map转Json操作



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

import com.alibaba.fastjson.JSONObject;

/**
 * @author WangZhe
 * 
 * @date 2020年6月18日
 */
public class Test {

    /**
     * @param args
     */
    public static void main(String[] args) {
        Map map = new HashMap(0);
        map.put("test", null);
        System.out.println(JSONObject.toJSONString(map));
    }

}

结果

{}

而我们在业务中常常需要将null值保留,这时就需要更换一个重载方法,添加SerializerFeature参数

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

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

/**
 * @author WangZhe
 * 
 * @date 2020年6月18日
 */
public class Test {

    /**
     * @param args
     */
    public static void main(String[] args) {
        Map map = new HashMap(0);
        map.put("test", null);
        System.out.println(JSONObject.toJSONString(map,SerializerFeature.WRITE_MAP_NULL_FEATURES, SerializerFeature.QuoteFieldNames));
    }

}

结果

{"test":null}

SerializerFeature参数说明参考博客

https://blog.csdn.net/u010246789/article/details/52539576

 

你可能感兴趣的:(数据封装,JSON)