2

我正在使用spring mvc框架开发 Web 应用程序,在我的一个 jsp 页面中<fmt:formatNumber> JSTL formatting tag。通常,此格式标记将采用locale information from client's browser locale setting. 但我不想specific locale从浏览器区域设置中使用。我该怎么做。?

4

1 回答 1

3

只需放置

<fmt:setLocale value="Your_Local"/>   

在你之前

<fmt:formatNumber>

并切换回浏览器区域设置

<fmt:setLocale value="${request.getLocale}"/>
于 2013-04-04T10:27:54.173 回答