【发布时间】:2014-01-07 09:02:38
【问题描述】:
我在 Struts 中有以下代码
<fmt:formatNumber type="currency" currencySymbol="Rs" value="${product.priceSell + product.priceSell * rates[nr.count - 1]}" maxFractionDigits="2" minFractionDigits="2"/>
我想把它转换成 Struts2。我尝试了下面的代码,但它不起作用。
<s:text name="format.money">
<s:param name="value" value="%{#product.priceSell+ #product.priceSell * #rates[#nr.count - 1]}" />
</s:text>
注意:rates 是Arraylist<String>。
【问题讨论】:
-
请查看此链接Money Format 和This。
标签: java jsp struts2 struts ognl