我不会为此使用子报表,因为这可以通过更简单的方式实现:您可以利用报表组和变量来实现这一点。确保根据输出对数据进行排序。
准备
- 根据StudentName创建报告组。在报告的报告检查器中右键单击 iReport,然后选择Add Report group。按照向导,给它一个名字(例如
Student
),选择字段StudentName
作为组表达式,添加页眉但不添加页脚。
- 创建一个变量来保存学生的总数。在变量的报表检查器中右键单击 iReport,然后选择添加变量。在属性面板中配置如下:名称:totalMarkByStudent,变量类:java.lang.Long,计算:Sum,重置类型:组,重置组:学生,变量表达式:$F{Marks}。将其余部分保留为其默认值。
报告设计
使用此配置,您可以获得如下图所示的报告输出。
如需进一步参考此处使用报告组和变量的完整 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="report3" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="0dfbb9b2-a9ce-4447-beee-37d653140dd1">
<property name="ireport.zoom" value="1.0"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="0"/>
<queryString>
<![CDATA[select * from (
Select 'Peter' as StudentName, 'Bio' as Course, 65 as Marks
union select 'Peter', 'Chem', 70
union select 'Peter', 'Music', 80
union select 'David', 'Chem', 50
) tbl
order by StudentName, Course]]>
</queryString>
<field name="StudentName" class="java.lang.String"/>
<field name="Course" class="java.lang.String"/>
<field name="Marks" class="java.lang.Long"/>
<variable name="totalMarkByStudent" class="java.lang.Long" resetType="Group" resetGroup="Student" calculation="Sum">
<variableExpression><![CDATA[$F{Marks}]]></variableExpression>
</variable>
<group name="Student">
<groupExpression><![CDATA[$F{StudentName}]]></groupExpression>
<groupHeader>
<band height="50">
<textField>
<reportElement uuid="ea996b6c-d41d-47bb-bef1-5df580b5c161" x="0" y="30" width="100" height="20"/>
<textElement/>
<textFieldExpression><![CDATA[$F{StudentName}]]></textFieldExpression>
</textField>
<textField evaluationTime="Group" evaluationGroup="Student">
<reportElement uuid="8ddc9b5b-9c57-4fce-8ed0-587c6b54143c" x="180" y="30" width="200" height="20"/>
<textElement/>
<textFieldExpression><![CDATA["Total : " + $V{totalMarkByStudent}]]></textFieldExpression>
</textField>
</band>
</groupHeader>
</group>
<detail>
<band height="20">
<textField>
<reportElement uuid="f67b4e51-4da6-4758-b3d3-bd75de70c0f7" x="0" y="0" width="180" height="20"/>
<textElement/>
<textFieldExpression><![CDATA["Subject : " + $F{Course}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="ea82c278-d2f3-4467-bf5d-8dab9ff99ae3" x="180" y="0" width="277" height="20"/>
<textElement/>
<textFieldExpression><![CDATA[$F{Marks}]]></textFieldExpression>
</textField>
</band>
</detail>
</jasperReport>
如果您改用子报表
我假设子报表是用学生 ID 参数化的,显示给定学生的数据。主StudentName
报表在详细信息面板中显示字段和子报表。
total
在计算学生总数的子报表中创建一个变量。
totalByStudent
在主报表中创建一个变量,计算类型设置为System
。
- 单击子报表,然后在属性面板中单击返回值。单击添加并选择:子报表变量:total,本地目标变量:totalByStudent,其余保持默认。单击确定。
- 将变量拖放
totalByStudent
到详细信息带中。选择它并在 Properties 面板中将 Evaluation time 设置为Band。输出将与上图相同。
我建议使用带有报告组和变量的方法,因为它降低了报告的复杂性,并且这种方式的性能会更好。