使用JSONObject.toJSONString 过滤掉值为空的key
时间:2023-02-26 08:36:07|栏目:JAVA代码|点击: 次
JSONObject.toJSONString 过滤值为空的key
情况
public static String getJsonResult(int status, String msg, Object data){undefined Map<String, Object> resultMap=new HashMap<String, Object>(); resultMap.put("status", status); resultMap.put("msg", msg); resultMap.put("data", data); return JSONObject.toJSONString(resultMap); } public static void main(String[] args) {undefined System.out.println(getJsonResult(1, "success", null)); }
结果
{"msg":"success","status":1}
从输出结果可以看出,null对应的key已经被过滤掉;这明显不是我们想要的结果,这时我们就需要用到fastjson的SerializerFeature序列化属性
也就是这个方法
JSONObject.toJSONString(Object object, SerializerFeature... features)
public static String getJsonResult(int status, String msg, Object data){undefined Map<String, Object> resultMap=new HashMap<String, Object>(); resultMap.put("status", status); resultMap.put("msg", msg); resultMap.put("data", data); return JSONObject.toJSONString(resultMap,SerializerFeature.WriteMapNullValue); }
public static void main(String[] args) {undefined System.out.println(getJsonResult(1, "success", null)); }
结果
{"msg":"success","data":null,"status":1}
JSONObject.toJSONString自动过滤空值
使用fastjson将javabean转string时,默认会将值为null的属性过滤掉,
可通过设置SerializerFeature.WriteMapNullValue避免这种情况
String value = JSONObject.toJSONString(objectData, SerializerFeature.WriteMapNullValue);
上一篇:Java如何找出数组中重复的数字
栏 目:JAVA代码
下一篇:DWR异常情况处理常见方法解析
本文标题:使用JSONObject.toJSONString 过滤掉值为空的key
本文地址:http://www.codeinn.net/misctech/226503.html