解决fastjson自动过滤null值
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
解决fastjson自动过滤null值
使用 SerializerFeature.WriteNullStringAsEmpty 解决
List<HistoryVector> historyVectors= new ArrayList<>();
HistoryVector historyVector = new HistoryVector();
historyVector.setInput("1");
historyVector.setReason("111111");
historyVector.setResult(null);
historyVectors.add(historyVector);
System.out.println(JSON.toJSONString(historyVector));
System.out.println(JSON.toJSONString(historyVector, SerializerFeature.WriteNullStringAsEmpty));
输出的信息
{"input":"1","reason":"111111"}
{"case_desc":"","input":"1","reason":"111111","result":""}
当然你也可以写成一个配置,无需在每个JSON.toJSONString里面添加参数,以下为fastjson SerializerFeature其他方法
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
3 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)