0

我正在尝试使用XML数据源生成报告。我的输入xml文件有 4 行。但是JR引擎生成的报告只包含第一行。

我有<detail> <band> ... </band> </detail>部分来获取数据

我的jrxml文件看起来像这样

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE jasperReport PUBLIC "//JasperReports//DTD Report Design//EN" "http://jasperreports.sourceforge.net/dtds/jasperreport.dtd">

<jasperReport name="simpleReport">
    <queryString language="xPath"><![CDATA[/response/results]]></queryString>
    <field name="field" class="java.lang.String">
        <fieldDescription><![CDATA[//field]]></fieldDescription>
    </field>
  <field name="count" class="java.lang.String">
          <fieldDescription><![CDATA[//field[@count]]]></fieldDescription>
    </field>

    <title>
        <band height="50">
            <staticText>
          <reportElement x="0" y="0" width="180" height="15"/>
            <textElement/>
          <text><![CDATA[Report]]></text>
        </staticText>
        </band>
    </title>
  <pageHeader>
        <band/>
    </pageHeader>
  <columnHeader>
        <band height="20">
        <staticText>
          <reportElement x="180" y="0" width="180" height="20"/>
        <textElement>
            <font isUnderline="true"/>
        </textElement>
        <text><![CDATA[Event Name]]></text>
      </staticText>
      <staticText>
        <reportElement x="360" y="0" width="180" height="20"/>
        <textElement>
          <font isUnderline="true"/>
        </textElement>
        <text><![CDATA[Count]]></text>
      </staticText>
    </band>
  </columnHeader>
  <detail>
    <band height="20">
      <textField>
        <reportElement x="180" y="0" width="180" height="15"/>
        <textElement/>
        <textFieldExpression><![CDATA[$F{field}]]></textFieldExpression>
      </textField>
      <textField>
        <reportElement x="360" y="0" width="180" height="15"/>
        <textElement/>
        <textFieldExpression><![CDATA[$F{count}]]></textFieldExpression>
      </textField>
    </band>
  </detail>
  <columnFooter>
    <band/>
  </columnFooter>
  <pageFooter>
    <band height="15">
      <staticText>
        <reportElement x="0" y="0" width="40" height="15"/>
        <textElement/>
        <text><![CDATA[Page:]]></text>
      </staticText>
      <textField>
        <reportElement x="40" y="0" width="100" height="15"/>
        <textElement/>
        <textFieldExpression class="java.lang.Integer"><![CDATA[$V{PAGE_NUMBER}]]></textFieldExpression>
      </textField>
    </band>
  </pageFooter>
  <summary>
    <band/>
  </summary>
</jasperReport>

我的输入 xmls 是

<response id="1074200577">
    <results id1="0" id2="0">
        <field count="7556">one</field>
        <field count="7524">two</field>
        <field count="7402">three</field>
        <field count="7304">four</field>
    </results>
</response>

我的 Java 客户端是

JasperCompileManager.compileReportToFile(inpuutjrxml, outputjasper);
JRXmlDataSource source = new JRXmlDataSource(new File(sourceFile));
HashMap<String, Object> params = new HashMap<String, Object>();
JasperPrint jasperPrint = JasperFillManager.fillReport(outputjasper, params, source);
JasperExportManager.exportReportToPdfStream(jasperPrint, new FileOutputStream(pefoutput));

如何从输入xml中获取所有值?

另外如何获取 id 值?对于第一个 xml 行<field count="7556">one</field>

<fieldDescription><![CDATA[//field[@count]]]></fieldDescription>
<fieldDescription><![CDATA[//field]]></fieldDescription>

给出与“一”相同的数据

4

2 回答 2

3

你可以试试这个查询(XPath):

/response/results/field

和这个字段声明:

<field name="field" class="java.lang.String">
    <fieldDescription><![CDATA[child::text()]]></fieldDescription>
</field>
<field name="count" class="java.lang.String">
    <fieldDescription><![CDATA[@count]]></fieldDescription>
</field>

使用 iReport

从iReport尝试的完整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="xml_missing_rows" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="09291847-62d6-4f2e-bf29-6db3230ce9a4">
    <queryString language="xPath">
        <![CDATA[/response/results/field]]>
    </queryString>
    <field name="field" class="java.lang.String">
        <fieldDescription><![CDATA[child::text()]]></fieldDescription>
    </field>
    <field name="count" class="java.lang.String">
        <fieldDescription><![CDATA[@count]]></fieldDescription>
    </field>
    <detail>
        <band height="20" splitType="Stretch">
            <textField>
                <reportElement uuid="30be33c9-3e8c-4b8f-89b7-c2cdafd91615" x="0" y="0" width="100" height="20"/>
                <textElement/>
                <textFieldExpression><![CDATA[$F{field}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement uuid="30be33c9-3e8c-4b8f-89b7-c2cdafd91615" x="100" y="0" width="100" height="20"/>
                <textElement/>
                <textFieldExpression><![CDATA[$F{count}]]></textFieldExpression>
            </textField>
        </band>
    </detail>
</jasperReport>

您输入数据的结果将是(通过iReport中的预览):

iReport 中的结果


注意
我使用的是iReport 5.2.0

使用 Java 代码

您应该将代码修改为:

JRXmlDataSource source = new JRXmlDataSource(new File(sourceFile), "/response/results/field");
HashMap<String, Object> params = new HashMap<String, Object>();
JasperPrint jasperPrint = JasperFillManager.fillReport(outputjasper, params, source);
JasperExportManager.exportReportToPdfStream(jasperPrint, new FileOutputStream(pefoutput));

在这种情况下,我们使用JRXmlDataSource(java.io.File file, java.lang.String selectExpression)构造函数。我们正在使用数据传递查询。

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="XMLDSSample" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="09291847-62d6-4f2e-bf29-6db3230ce9a4">
    <field name="field" class="java.lang.String">
        <fieldDescription><![CDATA[child::text()]]></fieldDescription>
    </field>
    <field name="count" class="java.lang.String">
        <fieldDescription><![CDATA[@count]]></fieldDescription>
    </field>
    <detail>
        <band height="20" splitType="Stretch">
            <textField>
                <reportElement uuid="30be33c9-3e8c-4b8f-89b7-c2cdafd91615" x="0" y="0" width="100" height="20"/>
                <textElement/>
                <textFieldExpression><![CDATA[$F{field}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement uuid="30be33c9-3e8c-4b8f-89b7-c2cdafd91615" x="100" y="0" width="100" height="20"/>
                <textElement/>
                <textFieldExpression><![CDATA[$F{count}]]></textFieldExpression>
            </textField>
        </band>
    </detail>
</jasperReport>

如您所见,我已经从模板中删除了queryString ——我们在Java代码中传递查询。

于 2013-08-08T12:00:50.640 回答
1

在我的情况下,我错误地将 textField 元素放在了摘要元素中。我能够通过移动细节元素内的文本字段来解决它。

于 2014-09-23T18:45:29.520 回答