当前正在使用以下代码

<textField isStretchWithOverflow="true" pattern="¤ #,##0.00" isBlankWhenNull="true">
    <reportElement x="0" y="0" width="45" height="12" />
    <textFieldExpression><![CDATA[$F{amount}]]></textFieldExpression>
</textField>


货币符号正以“¤”的形式出现。

我想知道要在yml文件中设置什么属性,以使其通过Java代码传递正确的货币符号。

最佳答案

我在创建jasperreport时通过了语言环境,从而解决了我的问题。

07-26 09:31