用于JSP自定义模式的JSTL formatNumber,与语言无关

时间:2013-06-03 14:38:41

标签: java jsp jstl

我正在使用JSP开发一个小应用程序,我需要将欧洲应用程序转换为国际应用程序(与US format..etc兼容)。我已经为标记formatNumber here创建了模式选项,但它始终取决于应用程序的区域设置。

示例1:

我有一个区域设置 en_US ,而formatNumber是:

 <fmt:formatNumber pattern="#,##0.00" value="${number}"/>

结果: 15,463,536,640.00

示例2:

我有一个区域设置 es_ES ,而formatNumber是:

 <fmt:formatNumber pattern="#,##0.00" value="${number}"/>

结果: 15.463.536.640,00

这就是那种与地方相关的模式!我需要独立于应用程序区域设置使用逗号和点,因为并不总是希望使用区域设置格式来显示数字。

任何帮助?

3 个答案:

答案 0 :(得分:6)

只需明确设置区域设置。

<!-- Page's own locale (you should already have that part). -->
<fmt:setLocale value="${user.locale}" />
<fmt:setBundle ... />

... text ...

<!-- Temporarily set to English, format number and then set back to page locale. -->
<fmt:setLocale value="en_US" />
<fmt:formatNumber ... />
<fmt:setLocale value="${user.locale}" />

另见:

答案 1 :(得分:0)

DecimalFormat

怎么样?
DecimalFormat formatter = new DecimalFormat("###,###,###");

答案 2 :(得分:0)

在您自己的代码文件中:

  • 将区域设置设置为en_US
  • 使用您的图案打印所需的数字。
  • 恢复旧语言环境。

标记文件如下:

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

<%@attribute name="number" description="The number to format and print." %>

<fmt:setLocale value="en_US"/>
<fmt:formatNumber pattern="#,##0.00" value="${number}"/>
<fmt:setLocale value="${user.locale}"/>

或者,如果您不想对其进行硬编码,可以像在输入参数中一样添加模式。