JSON.toJSONString(jsonObject),出现 “$ref“ 解决方案

文章目录

  • 前言
  • 一、问题复现
  • 二、解决方案
  • 总结


JSON.toJSONString(jsonObject),出现 “$ref“ 解决方案_第1张图片

前言

当json对象中有2个对象的值一样时,会出现 $ref ,来引用相同的值,这时去解析字符串时可能会有些问题,需要把引用去掉。


提示:以下是本篇文章正文内容,下面案例可供参考

一、问题复现

String jsonStr = "{\"rowIndex\":6,\"rowCount\":6}";
JSONObject jsonObject = JSON.parseObject(jsonStr);
System.out.println(jsonObject);
System.out.println(JSON.toJSONString(jsonObject));

// 打印的值如下
{"rowIndex":6,"rowCount":6}
{"rowIndex":6,"rowCount":{"$ref":"rowIndex"}}

二、解决方案

使用:SerializerFeature.WriteMapNullValue.getMask()

JSON.toJSONString(jsonObject, SerializerFeature.WriteMapNullValue.getMask())

String jsonStr = "{\"rowIndex\":6,\"rowCount\":6}";
JSONObject jsonObject = JSON.parseObject(jsonStr);
System.out.println(jsonObject);
System.out.println(JSON.toJSONString(jsonObject));
System.out.println(JSON.toJSONString(jsonObject, SerializerFeature.WriteMapNullValue.getMask()));

// 打印的值如下
{"rowIndex":6,"rowCount":6}
{"rowIndex":6,"rowCount":{"$ref":"rowIndex"}}
{"rowIndex":6,"rowCount":6}

总结

我恋的不是雪,而是有你的冬天;雪景虽美,但我的眼中却只有你。

你可能感兴趣的:(错误实例,json)