7

我在使用XML 作为数据源的报告摘要面板中创建表格组件时遇到问题,最终报告仅显示一个空白行

下面是我的名为ProjectXML.xml的 xml 数据源

<testsuites>
    <testsuite name="testsuite1"/>
    <testsuite name="testsuite2"/>
    <testsuite name="testsuite3"/>
</testsuites>

下面是我的.jrxml文件,名为report12.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="report12" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="bb749013-793e-4a97-a43a-08d89a11ce20">
    <property name="ireport.zoom" value="1.0"/>
    <property name="ireport.x" value="0"/>
    <property name="ireport.y" value="0"/>
    <style name="table">
        <box>
            <pen lineWidth="1.0" lineColor="#3300CC"/>
        </box>
    </style>
    <style name="table_TH" mode="Opaque" backcolor="#F0F8FF">
        <box>
            <pen lineWidth="0.5" lineColor="#3300CC"/>
        </box>
    </style>
    <style name="table_CH" mode="Opaque" backcolor="#BFE1FF">
        <box>
            <pen lineWidth="0.5" lineColor="#3300CC"/>
        </box>
    </style>
    <style name="table_TD" mode="Opaque" backcolor="#FFFFFF">
        <box>
            <pen lineWidth="0.5" lineColor="#3300CC"/>
        </box>
        <conditionalStyle>
            <conditionExpression><![CDATA[new Boolean($V{REPORT_COUNT}.intValue()%2==0)]]></conditionExpression>
            <style backcolor="#EFF7FF"/>
        </conditionalStyle>
    </style>
    <subDataset name="tableDataSet" uuid="44f57638-9650-43f7-9a45-b12c6144c112">
        <queryString language="xPath">
            <![CDATA[/testsuites/testsuite]]>
        </queryString>
        <field name="name" class="java.lang.String">
            <fieldDescription><![CDATA[@name]]></fieldDescription>
        </field>
    </subDataset>
    <queryString language="xPath">
        <![CDATA[/testsuites/testsuite]]>
    </queryString>
    <field name="name" class="java.lang.String">
        <fieldDescription><![CDATA[@name]]></fieldDescription>
    </field>
    <summary>
        <band height="238" splitType="Stretch">
            <componentElement>
                <reportElement uuid="59f049a5-d77e-480c-a1ee-46987630290d" key="table" style="table" x="0" y="0" width="555" height="238"/>
                <jr:table xmlns:jr="http://jasperreports.sourceforge.net/jasperreports/components" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd">
                    <datasetRun subDataset="tableDataSet" uuid="6d3ecced-ba97-49c1-aec9-7f5903748fa5">
                        <connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
                    </datasetRun>
                    <jr:column uuid="ed4b1e17-dcec-4ed6-9f1f-efb543f240b7" width="90">
                        <jr:columnHeader style="table_CH" height="30">
                            <staticText>
                                <reportElement uuid="e2772a76-f9da-4438-8aa3-78cee739bdaf" x="0" y="0" width="90" height="30"/>
                                <textElement/>
                                <text><![CDATA[name]]></text>
                            </staticText>
                        </jr:columnHeader>
                        <jr:detailCell style="table_TD" height="20">
                            <textField>
                                <reportElement uuid="d496fc00-bab8-4b85-bb8d-c75c1cfc3dc4" x="0" y="0" width="90" height="20"/>
                                <textElement/>
                                <textFieldExpression><![CDATA[$F{name}]]></textFieldExpression>
                            </textField>
                        </jr:detailCell>
                    </jr:column>
                </jr:table>
            </componentElement>
        </band>
    </summary>
</jasperReport>

下面是report12.jrxml的空白预览截图

report12 预览

高级感谢您为此提供的任何帮助,以获取带有TestSuite名称的完整表格。

4

2 回答 2

6

我找到了一个“hack”并且不是很好的方法,但它正在工作。

您可以添加主(报告的)数据集并在表格组件中使用它。

<?xml version="1.0" encoding="UTF-8"?>
<jasperReport .. whenNoDataType="AllSectionsNoDetail" ..>
    <style name="table">
        <box>
            <pen lineWidth="1.0" lineColor="#000000"/>
        </box>
    </style>
    <style name="table_TH" mode="Opaque" backcolor="#F0F8FF">
        <box>
            <pen lineWidth="0.5" lineColor="#000000"/>
        </box>
    </style>
    <style name="table_CH" mode="Opaque" backcolor="#BFE1FF">
        <box>
            <pen lineWidth="0.5" lineColor="#000000"/>
        </box>
    </style>
    <style name="table_TD" mode="Opaque" backcolor="#FFFFFF">
        <box>
            <pen lineWidth="0.5" lineColor="#000000"/>
        </box>
    </style>
    <subDataset name="tbDS">
        <queryString language="xPath">
            <![CDATA[/testsuites/testsuite]]>
        </queryString>
        <field name="name" class="java.lang.String">
            <fieldDescription><![CDATA[@name]]></fieldDescription>
        </field>
    </subDataset>
    <queryString language="xPath">
        <![CDATA[/testsuites/testsuite]]>
    </queryString>
    <field name="name" class="java.lang.String">
        <fieldDescription><![CDATA[@name]]></fieldDescription>
    </field>
    <summary>
        <band height="98" splitType="Stretch">
            <componentElement>
                <reportElement key="table" style="table" x="76" y="33" width="360" height="50"/>
                <jr:table xmlns:jr="http://jasperreports.sourceforge.net/jasperreports/components" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd">
                    <datasetRun subDataset="tbDS">
                        <dataSourceExpression><![CDATA[((net.sf.jasperreports.engine.data.JRXmlDataSource)$P{REPORT_DATA_SOURCE}).dataSource("/testsuites/testsuite")]]></dataSourceExpression>
                    </datasetRun>
                    <jr:column width="90">
                        <jr:columnHeader style="table_CH" height="30">
                            <staticText>
                                <reportElement x="0" y="0" width="90" height="30"/>
                                <textElement/>
                                <text><![CDATA[name]]></text>
                            </staticText>
                        </jr:columnHeader>
                        <jr:detailCell style="table_TD" height="20">
                            <textField>
                                <reportElement x="0" y="0" width="90" height="20"/>
                                <textElement/>
                                <textFieldExpression><![CDATA[$F{name}]]></textFieldExpression>
                            </textField>
                        </jr:detailCell>
                    </jr:column>
                </jr:table>
            </componentElement>
        </band>
    </summary>
</jasperReport>

在这个示例中,我使用((net.sf.jasperreports.engine.data.JRXmlDataSource)$P{REPORT_DATA_SOURCE}).dataSource("/testsuites/testsuite")表达式来设置 Table 的数据源。

结果将是:

通过 iReport 预览生成的报告


获得所需设计的另一种方法是使用Detail带(不使用Table组件)。


我认为您描述的情况检测到JasperReports引擎的错误。

我在http://community.jaspersoft.com站点找到了类似的帖子:Table component and XML datasource and using table elements with xml datasource

于 2012-11-26T10:49:41.647 回答
1

我在 IReport 上找到了一个解决方案,选择 Edit table Datasource,在 Connection / Datasource Expression 的下拉列表中选择

使用数据源表达式

new net.sf.jasperreports.engine.JREmptyDataSource(1)

它适用于 Java 应用程序

于 2014-02-07T02:28:43.750 回答