JSTL:动态数字货币,改变模式并保持动态?

时间:2013-01-28 11:55:38

标签: spring jsp jstl

我正试图动态地展示货币,这完全没问题!

但我想将模式从“SFr.150'000.00”改为“150'000.00 SFr”。 (并且仍然保持动态!)

我有什么建议吗?

以下是代码:

<fmt:setLocale value="${pageContext.request.locale}" scope="session" />


<fmt:formatNumber type="currency" value="${investVolume}" />

提前致谢!

1 个答案:

答案 0 :(得分:1)

<fmt:formatNumber type="currency" value="${investVolume}" pattern="###,###.## ¤"/>

模式属性遵循DecimalFormat规则。

模式中的¤代表货币符号。

虽然我不确定'是否显示在上部或下部位置,但这应该是可行的方法。