Json保留指定小数位数和处理末尾0
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
//修改JsonSerializer<Double> 到需要的类型,默认为JsonSerializer,参数为Object value
public class JsonSerializerUtils extends JsonSerializer<Double> {
@Override
public void serialize(Double value, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException {
if (Objects.nonNull(value)) {
//保留4位小数#代表末位是0舍去
DecimalFormat decimalFormat = new DecimalFormat("0.####");
//四舍五入
decimalFormat.setRoundingMode(RoundingMode.HALF_UP);
String result = decimalFormat.format(value);
jsonGenerator.writeNumber(Double.valueOf(result));
} else {
jsonGenerator.writeNumber(Double.valueOf(0));
}
}
}
//用法实体类添加
@JsonSerialize(using = JsonSerializerUtils.class)
private Double hello;
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)