如何向字段添加货币

时间:2013-03-20 12:53:39

标签: jasper-reports currency

我试图在 JR 报告中的某个文本字段中添加一些货币。

我使用了一种模式,但它显示了一个没有货币的数字:

 #,##0.00 ¤ or  #,##0.00 DHS
<frame>
    <reportElement mode="Opaque" x="173" y="125" width="627" height="55" forecolor="#D0B48E" backcolor="#CCCCFF"/>
    <staticText>
        <reportElement x="32" y="15" width="100" height="20"/>
        <textElement/>
        <text><![CDATA[Montant Total]]></text>
    </staticText>
    <textField pattern="#,##0.00 DHS">
        <reportElement x="453" y="15" width="100" height="20" forecolor="#FF0033" backcolor="#FFFFFF"/>
        <textElement/>
        <textFieldExpression><![CDATA[$V{total}]]></textFieldExpression>

    </textField>
</frame>

0 个答案:

没有答案