Java Bigdecimal 范围问题

发布于 2024-12-01 15:41:24 字数 267 浏览 1 评论 0原文

对于下面的 java 代码,它显示 0E-10 作为输出

 BigDecimal bd = new BigDecimal("00.0000000000");
 System.out.println(bd); // output is 0E-10

0E-10 是由于 Bigdecimal 的范围值。但是有什么方法可以显示为输入 00.0000000000 而不需要太多编码。

For below java Code it dispaly 0E-10 as output

 BigDecimal bd = new BigDecimal("00.0000000000");
 System.out.println(bd); // output is 0E-10

0E-10 is due to range value of Bigdecimal. but is there any way i can display as like input 00.0000000000 without much coding.?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坚持沉默 2024-12-08 15:41:24

BigDecimal#toPlainString() 将给出小数部分。请注意,它并不完全满足您的要求

如果您采用格式化操作,请使用 DecimalFormat

BigDecimal#toPlainString() will give the decimal part . Note it doesnt exactly satisfy your requirements

If you the op formatted , use DecimalFormat

半岛未凉 2024-12-08 15:41:24
BigDecimal bd = new BigDecimal("00.0000000000");
System.out.println(bd.toPlainString()); // output = 0.0000000000

正如 amal 所说,您可以简单地使用 BigDecimal.toPlainString():

public String toPlainString()
   Returns a string representation of this BigDecimal without an exponent field
BigDecimal bd = new BigDecimal("00.0000000000");
System.out.println(bd.toPlainString()); // output = 0.0000000000

As stated by amal you can simply use BigDecimal.toPlainString():

public String toPlainString()
   Returns a string representation of this BigDecimal without an exponent field
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文