如何在 JSTL 中对正小数和负小数进行四舍五入?
我有两个数字需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
formatNumber
标记。例如
You can use the
formatNumber
tag in the fmt (http://java.sun.com/jsp/jstl/fmt
) namespace.For example