如何避免Kotlin中的指数/科学符号?

时间:2019-06-18 06:56:05

标签: android kotlin double exponential scientific-notation

在我的一个项目中,当我计算总计

  shippingDetails.grandTotal = 3.448873577E7

代替34488749.7‬ 其中grandTotal的类型为Double

上面的对象在我的数据类中,我需要作为请求主体传递请求,但由于它具有科学计数法,因此失败。

@POST(AppConstants.Network.CONFIRM_PENDING_SHIPPING)
fun confirmPendingShipping(
    @Header("Authorization") token: String,
    @Body shippingItems: RequestConfirmShipping
): Single<ResponsePendingShipping>

我使用Retrofit

将其作为帖子正文传递

0 个答案:

没有答案