我正试图动态地展示货币,这完全没问题!
但我想将模式从“SFr.150'000.00”改为“150'000.00 SFr”。 (并且仍然保持动态!)
我有什么建议吗?
以下是代码:
<fmt:setLocale value="${pageContext.request.locale}" scope="session" />
<fmt:formatNumber type="currency" value="${investVolume}" />
提前致谢!
答案 0 :(得分:1)
<fmt:formatNumber type="currency" value="${investVolume}" pattern="###,###.## ¤"/>
模式属性遵循DecimalFormat规则。
模式中的¤
代表货币符号。
虽然我不确定'
是否显示在上部或下部位置,但这应该是可行的方法。