Jasper报告中的某些货币符号未来

时间:2016-11-03 13:11:26

标签: java jasper-reports

我使用jaspersoft studio创建了一个jasper报告模板,我使用java代码填充模板。我在报告中有一些需要本地化的数据,因此我通过java中的以下代码发送“locale”。

Locale locale = new Locale("zh", "CN");
templateParameters.put("REPORT_LOCALE", locale); //A map to pass to report

我也试过了 -

Locale locale = java.util.Locale.CHINA;

在填充的报告中,“数字格式”存在,但缺少当前符号(只有美元,英镑,欧元符号即将到来) 下面是我在jasper报告中用来填充文本字段的代码 -

NumberFormat.getCurrencyInstance($P{REPORT_LOCALE}).format($P{Param_Name})

如果有人可以指出错误或提供一些建议,我将非常感激。

1 个答案:

答案 0 :(得分:2)

我认为您的问题与字体支持有关。

我们应该使用 MSDN ,以防使用 JRPdfExporter

我尝试使用带有中文支持的字体,在这种情况下一切正常。我不知道为什么使用大量其他字体无法帮助

实施例

Java代码

<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="Show currency" pageWidth="595" pageHeight="842" whenNoDataType="AllSectionsNoDetail" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20">
    <property name="com.jaspersoft.studio.data.defaultdataadapter" value="One Empty Record"/>
    <parameter name="value" class="java.lang.Double" isForPrompting="false">
        <defaultValueExpression><![CDATA[1234.567]]></defaultValueExpression>
    </parameter>
    <title>
        <band height="70">
            <textField>
                <reportElement x="10" y="10" width="300" height="15"/>
                <textElement>
                    <font fontName="Sharp Dawn"/>
                </textElement>
                <textFieldExpression><![CDATA[NumberFormat.getCurrencyInstance(new Locale("zh", "CN")).format($P{value})]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="10" y="25" width="300" height="15"/>
                <textElement>
                    <font fontName="Sharp Dawn"/>
                </textElement>
                <textFieldExpression><![CDATA[NumberFormat.getCurrencyInstance($P{REPORT_LOCALE}).format($P{value})]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="3" y="40" width="300" height="15"/>
                <textFieldExpression><![CDATA[NumberFormat.getCurrencyInstance($P{REPORT_LOCALE}).format($P{value})]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="3" y="55" width="300" height="15"/>
                <textFieldExpression><![CDATA[NumberFormat.getCurrencyInstance(new Locale("zh", "CN")).format($P{value})]]></textFieldExpression>
            </textField>
        </band>
    </title>
</jasperReport>

报告模板

jrxml 文件中有4个 textField :两个使用中文支持的字体,另外两个 - 没有它。

{{1}}

输出结果

JRPdfExporter 的帮助下生成的 pdf 文件看起来像

Font Extensions

Yuan 符号仅显示第一组。