如何访问JasperDesign对象的私有和受保护的JRElements成员?

时间:2017-06-20 07:21:43

标签: java jasper-reports

我使用JasperDesign类创建Jasper对象,并使用jrxml文件中的JRXmlLoader启动它。 我正在使用getAllBands()方法提取所有JRBand来获取所有JRBand,并且从每个波段,我使用JRBand的方法getElements()提取JRElements。

但是,在获取staticFieldtextField等每个元素后,我无法从私有或受保护的“TEXT”字段中获取其值。

如何访问这些值?

1 个答案:

答案 0 :(得分:0)

您需要将JRElement强制转换为相对JRDesign类才能访问元素的特定属性:

实施例

<强> JRXML

<?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="testJasperDesign" pageWidth="595" pageHeight="842" whenNoDataType="AllSectionsNoDetail" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="597c0716-df6b-42ec-a7c8-863eb1b7174a">
    <parameter name="testParam" class="java.lang.String">
        <defaultValueExpression><![CDATA["Hello world"]]></defaultValueExpression>
    </parameter>
    <variable name="variable1" class="java.lang.String"/>
    <title>
        <band height="32" splitType="Stretch">
            <textField>
                <reportElement x="100" y="0" width="100" height="20" uuid="bf5a8f35-3faf-457b-a6fc-b29d97a9c332"/>
                <textFieldExpression><![CDATA[$P{testParam}]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement x="0" y="0" width="100" height="20" uuid="59922664-93a3-4f69-a906-5ff418d09cd3"/>
                <text><![CDATA[Static text]]></text>
            </staticText>
        </band>
    </title>
</jasperReport>

<强>爪哇

public static void main(String[] args) throws JRException {

    JasperDesign design = JRXmlLoader.load("jasper/testJasperDesign.jrxml");
    JRBand titleBand = design.getTitle();
    JRElement[] elements = titleBand.getElements();
    for (JRElement element : elements) {
        if (element instanceof JRDesignTextField){
            JRDesignTextField textField = (JRDesignTextField) element;
            JRExpression expression = textField.getExpression();
            System.out.println(expression.getText());
        }
        if (element instanceof JRDesignStaticText){
            JRDesignStaticText staticText = (JRDesignStaticText) element;
            System.out.println(staticText.getText());
        }

    }
}

<强>输出

  

$ P {testParam}
静态文本