我正在使用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
这就是那种与地方相关的模式!我需要独立于应用程序区域设置使用逗号和点,因为并不总是希望使用区域设置格式来显示数字。
任何帮助?
答案 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 formatter = new DecimalFormat("###,###,###");
答案 2 :(得分:0)
在您自己的代码文件中:
标记文件如下:
<%@ 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}"/>
或者,如果您不想对其进行硬编码,可以像在输入参数中一样添加模式。