如何在JasperReports模板文件 ( JRXML ) 中添加注释。我需要在每个乐队中添加一些评论来描述乐队的功能,并且需要为子报告写一些评论。那么如何在 jrxml 文件中添加注释呢?
4 回答
在 iReport Designer 工具中使用标注功能
从iReport 3.7.1开始,添加了一个名为Callouts的元素,特别是为了满足评论规定。
转到iReport设计器中的Window -> Pallete菜单。这些“标注”就像iReport界面中的便签纸一样,在生成的 XML 中看起来像这样:
<property name="ireport.callouts" value="##Mon Aug 12 18:03:15 MSK 2013\ncallouts.2.text=This is Detail band\ncallouts.1.text=This is Title Band\ncallouts.2.bounds=353,118,150,75\ncallouts.1.bounds=34,17,239,83"/>
在 GUI 设计器 ( iReport ) 中,注释看起来像:
有关更多详细信息,请查看jrxml 中的评论被http://community.jaspersoft.com上的 iReport 帖子删除
在早期版本的JasperReports ( iReport ) 中没有这样的内置机会。
例如,我们可以使用“自定义属性”机制来解决这个问题。
在下面的示例中,我将展示如何在iReport中为字段添加属性Description。
对于乐队,我们可以手动添加属性(将行添加到jrxml文件)。
具有自定义属性的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="sample_comments" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="0dfb0d3b-8128-4f2d-b12a-9b5edac0f460">
<property name="Desription" value="This is a sample of report with comments. The custom properties are used"/>
<queryString>
<![CDATA[SELECT id, city FROM address]]>
</queryString>
<field name="ID" class="java.lang.Integer">
<property name="Description" value="The identificator"/>
</field>
<field name="CITY" class="java.lang.String"/>
<title>
<band height="79" splitType="Stretch"/>
</title>
<columnHeader>
<band height="20" splitType="Stretch">
<property name="Description" value="Column header Band"/>
<staticText>
<reportElement uuid="8c120f11-e5bf-40e1-9234-3bcede068949" x="0" y="0" width="100" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<text><![CDATA[Id]]></text>
</staticText>
<staticText>
<reportElement uuid="c8c11f63-d12d-4fbf-b146-dc3d95071065" x="100" y="0" width="100" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<text><![CDATA[City]]></text>
</staticText>
</band>
</columnHeader>
<detail>
<band height="20" splitType="Stretch">
<textField>
<reportElement uuid="402fcbe3-ef31-475b-8d0f-9da66c3a0692" x="0" y="0" width="100" height="20">
<property name="Description" value="Contains the Id field"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{ID}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="96bd13a6-a90e-46c6-8c43-ca45b2b7db1d" x="100" y="0" width="100" height="20"/>
<textElement/>
<textFieldExpression><![CDATA[$F{CITY}]]></textFieldExpression>
</textField>
</band>
</detail>
</jasperReport>
在这个jrxml文件中,我为字段、文本字段和乐队添加了“评论”。
您可以在Preserve XML comments in iReport .jrxml files中找到替代方法吗?邮政
<!-- this is a comment -->
将在 jrxml 中工作。
在旧版本的 Jasper (0.6.0) 中,我只需创建一个名为“Comments”的参数并使用 parameterDescription 来发表我的评论。
在这里,我可以添加任何我喜欢的东西。我的评论可以随意长,也可以跨越我需要的任意多行。如果我愿意,我可以在此处保留按时间顺序排列的更新历史记录。它不如内嵌评论方便,但至少我不必担心 iReport 在编译时会删除我的评论。