使用JSONObject.toJSONString 過濾掉值為空的key

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);

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: