这是关系表
StudentName
Course
Marks
Peter
Bio
65
Peter
Chem
70
Peter
Music
80
David
Chem
50
如何制作以下内容
Peter Total : 215
Subject : Bio - 65
Subject : Chem - 70
Subject : Music - 80
Peter Total : 50
Subject : Chem - 50
答案 0 :(得分:4)
我不会使用子报告,因为这可以通过更简单的方式实现:您可以使用报告组和变量来实现此目的。确保数据根据输出进行排序。
<强>制备强>
Student
),选择字段StudentName
作为组表达式,添加标题但不添加页脚。 报告设计
StudentName
从报表检查器拖放到报表设计器中,放入学生组标题区域。将会有一个弹出窗口询问应显示哪种值,选择字段值并单击“确定”。将变量totalMarksByStudent
从报表检查器拖放到报表设计器中,放入学生组标题区域。单击文本字段并在属性面板中修改以下设置:
200
(允许更多空间)"Total : " + $V{totalMarkByStudent}
java.lang.String
Group
(表示在完成组处理后评估值)Student
将报告检查器中的字段课程和标记拖放到报告设计器的详细信息区域中。右键单击课程字段,然后选择编辑表达式。将表达式复活到"Subject : " + $F{Course}
并单击“应用”。
使用此配置,您可以获得报告输出,如下图所示。
在此处进一步参考完整的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>
如果您使用子报告
我假设子报告是paraemterized,学生ID显示给定学生的数据。主报告显示字段StudentName
和详细信息面板中的子报表。
total
,用于计算学生的总数。 totalByStudent
,计算类型设置为System
。totalByStudent
拖放到详细信息区域中。选择它,然后在“属性”面板中将评估时间设置为 Band 。输出与上面显示的相同。 我建议将此方法与报告组和变量一起使用,因为它会降低报告的复杂性,并且这种方式的性能会更好。