如何在 JSTL 中对正小数和负小数进行四舍五入?

发布于 2024-09-17 17:40:16 字数 263 浏览 8 评论 0原文

我有两个数字需要在 JSTL 中四舍五入到小数点后 4 位。一个是正​​数:

40.7615811
40.7616

另一个是负数:

-73.9940841
-73.9941

两者都需要四舍五入到小数点后 4 位,如每个示例的第二行所示。

有没有一种干净的方法可以在 JSTL 中执行此操作,或者我是否需要在控制器类或 JSP scriptlet 中执行此操作?

I have two numbers that I need to round to 4 decimal places in JSTL. One is positive:

40.7615811
40.7616

and the other is negative:

-73.9940841
-73.9941

Both need to be rounded to 4 decimal places, as on the second line of each example.

Is there a clean way to do this in JSTL or do I need to do this in a controller class or JSP scriptlet?

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

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

发布评论

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

评论(1

慕烟庭风 2024-09-24 17:40:16

您可以使用 formatNumber 标记。

例如

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>

<fmt:formatNumber value="${foo}" pattern="0.0000"/>

You can use the formatNumber tag in the fmt (http://java.sun.com/jsp/jstl/fmt) namespace.

For example

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>

<fmt:formatNumber value="${foo}" pattern="0.0000"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文