将Jackson ObjectMapper类设置为不使用双重科学记数法

时间:2016-06-09 09:36:22

标签: java jackson jsonschema jackson-modules

我正在为JsonSchema使用库com.fasterxml.jackson库, 我正在创建一个IntegerSchema对象,当我使用下面的代码设置整数模式的范围时:

main(){
     IntegerSchema intSchema = new IntegerSchema();
     // setMaximum accepts Double object 
     intSchema.setMaximum(new Double(102000000));
     // setMaximum accepts Double object
     intSchema.setMinimum(new Double(100));

     printJsonSchema(intSchema);
}


public void printJsonSchema(JsonSchema schema){
        ObjectMapper mapper = new ObjectMapper();
        try {
            logger.info(mapper.writeValueAsString(schema));
        } catch (JsonProcessingException e) {
            throw new IllegalStateException(e);
        }
}

当我使用ObjectMapper将IntegerSchema转换为字符串时得到以下响应:

{"type":"integer","maximum":1.02E8,"minimum":100.0}

最大值和最小值将转换为科学记数法。

但我需要输出非科学记谱法如下:

{"type":"integer","maximum":102000000,"minimum":100}

我无法更改IntegerSchema类。

请建议如何在不扩展IntegerSchema类的情况下获得所需的输出?

提前致谢

5 个答案:

答案 0 :(得分:9)

这是一个我相信的java问题。如果您调试程序,您的Double将始终以科学方式显示,因此我们想要的是将其强制为String。这可以通过多种方式在Java中实现,您可以在这里查找:

How to print double value without scientific notation using Java?

就你关于杰克逊的具体问题而言,我已经为你写了一些代码:

public class ObjectMapperTest {

    public static void main(String[] args) throws JsonProcessingException {

        IntegerSchema schema = new IntegerSchema();
        schema.type = "Int";
        schema.max = 10200000000d;
        schema.min = 100d;

        ObjectMapper m = new ObjectMapper();

        System.out.println(m.writeValueAsString(schema));

    }

    public static class IntegerSchema {

        @JsonProperty
        String type;
        @JsonProperty
        double min;
        @JsonProperty
        @JsonSerialize(using=MyDoubleDesirializer.class)
        double max;
    }

    public static class MyDoubleDesirializer extends JsonSerializer<Double> {


        @Override
        public void serialize(Double value, JsonGenerator gen, SerializerProvider serializers)
                throws IOException, JsonProcessingException {
            // TODO Auto-generated method stub

            BigDecimal d = new BigDecimal(value);
            gen.writeNumber(d.toPlainString());
        }

    }

}

诀窍是为Double值注册自定义Serializer。这样,您就可以控制自己想要的内容。

我正在使用BigDecimal值来​​创建Double的String表示形式。然后输出变为(对于特定示例):

{"type":"Int","min":100.0,"max":10200000000}

我希望能解决你的问题。

阿图尔

答案 1 :(得分:4)

我知道我回答晚了,但我遇到的事情可能会帮助其他人

虽然转换我在下面遇到的 BigDecimal 正在工作

mapper = mapper.setNodeFactory(JsonNodeFactory.withExactBigDecimals(true));

虽然这对我不起作用

mapper.configure(JsonGenerator.Feature.WRITE_BIGDECIMAL_AS_PLAIN, true);

答案 2 :(得分:2)

更新 Jakson 2.9.10

属性 WRITE_BIGDECIMAL_AS_PLAIN 替换为 com.fasterxml.jackson.core.JsonGenerator。您可以使用:

mapper.enable(JsonGenerator.Feature.WRITE_BIGDECIMAL_AS_PLAIN);

答案 3 :(得分:1)

Feature.WRITE_BIGDECIMAL_AS_PLAIN 为您的Object Mapper设置此项

答案 4 :(得分:1)

如果您使用的是 ValueToTree,则不需要任何出厂设置。 ValueToTree 的唯一问题是它正在转换为 TextNode (String Fromat),因此如果您有任何基于 ObjectNodes 的逻辑,它将无法工作