switch off scientific notation in Gson double serialization(在 Gson 双序列化中关闭科学记数法)
问题描述
当我使用 Gson 序列化一个包含接近零的双精度值的对象时,它使用的是科学 E 符号:
When I use Gson to serialize an Object that contains a double value close to zero it is using the scientific E-notation:
{"doublevaule":5.6E-4}
如何告诉 Gson 生成
How do I tell Gson to generate
{"doublevaule":0.00056}
相反?我可以实现一个自定义的 JsonSerializer,但它返回一个 JsonElement.我将不得不返回一个 JsonPrimitive,其中包含一个无法控制其序列化方式的 double.
instead? I can implement a custom JsonSerializer, but it returns a JsonElement. I would have to return a JsonPrimitive containing a double having no control about how that is serialized.
谢谢!
推荐答案
为什么不为 Double
提供一个新的序列化器?(您可能必须重写您的对象以使用 Double
而不是 double
).
Why not provide a new serialiser for Double
? (You will likely have to rewrite your object to use Double
instead of double
).
然后在序列化器中,您可以转换为 BigDecimal
,并使用比例等.
Then in the serialiser you can convert to a BigDecimal
, and play with the scale etc.
例如
GsonBuilder gsonBuilder = new GsonBuilder();
gsonBuilder.registerTypeAdapter(Double.class, new JsonSerializer<Double>() {
@Override
public JsonElement serialize(final Double src, final Type typeOfSrc, final JsonSerializationContext context) {
BigDecimal value = BigDecimal.valueOf(src);
return new JsonPrimitive(value);
}
});
gson = gsonBuilder.create();
上面将呈现(比如)9.166666E-6
为 0.000009166666
The above will render (say) 9.166666E-6
as 0.000009166666
这篇关于在 Gson 双序列化中关闭科学记数法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Gson 双序列化中关闭科学记数法
基础教程推荐
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 降序排序:Java Map 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01