java-使用模式在Jasper Reports中格式化货币
作者:互联网
我有一个查询,该查询从表中返回金额:
select bus_price from mySchema.BusTable;
这将返回如下金额:
526547
123456
456789.25
12478.35
我在碧玉报告中使用了上述金额.
但是,我希望报告中的输出显示为:
$526,547.00
$123,456.00
$456,789.25
$12,478.35
JRXML代码段是:
<textField isStretchWithOverflow="true">
<reportElement stretchType="RelativeToTallestObject" x="700" y="0" width="100" height="30"/>
<textElement/>
<textFieldExpression class="java.math.BigDecimal">
<![CDATA[$F{BusPrices}]]>
</textFieldExpression>
</textField>
我知道我必须使用模式.但是,我无法使其工作.
运用
<textField isStretchWithOverflow="true" pattern='$###,##0.00'>
不管用.
我想念什么??
谢谢阅读!
解决方法:
你很亲密
<textField pattern="¤ #,##0.00">
应该管用.
您需要使用“¤”字符使其成为“货币”格式.
如果您下载的iReports版本号与您的服务器相匹配,则会发现您的选择.
标签:java,design-patterns,currency-formatting,jasper-reports 来源: https://codeday.me/bug/20191011/1889196.html