小数格式舍入

发布于 2024-11-16 15:07:58 字数 267 浏览 1 评论 0原文

这是小代码来说明我所看到的内容

float floater = 59.999f;

DecimalFormat df = new DecimalFormat("00.0");

System.out.println(df.format(floater));

此打印:

60.0

我希望它打印

59.9

我需要做什么?

Here is small code to illustrate what I am seeing

float floater = 59.999f;

DecimalFormat df = new DecimalFormat("00.0");

System.out.println(df.format(floater));

This prints:

60.0

I would like it to print

59.9

What do I need to do?

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

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

发布评论

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

评论(2

指尖上得阳光 2024-11-23 15:07:58

在使用 DecimalFormat 之前添加此行:

df.setRoundingMode(RoundingMode.DOWN);

查看其他舍入模式,看看哪一种最适合您。

注意:此方法仅适用于 JDK 1.6 或以上版本

Add this line before using the DecimalFormat:

df.setRoundingMode(RoundingMode.DOWN);

Take a look at the other rounding modes and see which one is best for you.

Note : this method works only in JDK 1.6 or above

思念满溢 2024-11-23 15:07:58
float d = 59.999f;
BigDecimal bd = new BigDecimal(d);
// Use the returned value from setScale, as it doesn't modify the caller.
bd = bd.setScale(1, BigDecimal.ROUND_FLOOR);
String formatted = bd.toString();
float d = 59.999f;
BigDecimal bd = new BigDecimal(d);
// Use the returned value from setScale, as it doesn't modify the caller.
bd = bd.setScale(1, BigDecimal.ROUND_FLOOR);
String formatted = bd.toString();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文