1

我正在尝试动态显示一种货币,这完全可以!

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

有什么建议我该怎么做?

这是代码:

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


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

提前致谢!

4

1 回答 1

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

pattern 属性遵循DecimalFormat规则。

图案中的¤代表货币符号。

虽然我不确定这是否'会显示在较高或较低的位置,但这应该是要走的路。

于 2013-01-28T12:15:18.700 回答