欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

使用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

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有