我正在使用spring mvc
框架工作开发网络应用,在我的一个jsp页面中我有<fmt:formatNumber> JSTL formatting tag
。通常,此格式标记将采用locale information from client's browser locale setting
。但我想使用specific locale
而不是浏览器区域设置。我怎么能这样做??
答案 0 :(得分:3)
放置
<fmt:setLocale value="Your_Local"/>
之前
<fmt:formatNumber>
并切换回浏览器区域设置
<fmt:setLocale value="${request.getLocale}"/>