jasperreports-server中的示例报表是怎么制作的
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jasperreports-server中的示例报表是怎么制作的相关的知识,希望对你有一定的参考价值。
参考技术A 下面的代码(JasperReportExport.java)演示了JasperReport文档的导出过程。该JasperExportManager提供的方法将报表导出成PDF,HTML和XML。导出到使用的类net.sf.jasperreports.engine.export.JRXlsExporter的XLS格式。此代码生成以下三个文件:· sample_report.pdf
· sample_report.htmll
· sample_report.xls
导出为其他格式
让我们来写一个报表模板。在JRXML文件的内容 (C:\tools\jasperreports-5.0.1\test\jasper_report_template.jrxml) 如下:
<queryString>
<![CDATA[]]>
</queryString>
<fieldname="country"class="java.lang.String">
<fieldDescription><![CDATA[country]]></fieldDescription>
</field>
<fieldname="name"class="java.lang.String">
<fieldDescription><![CDATA[name]]></fieldDescription>
</field>
<columnHeader>
<bandheight="23">
<staticText>
<reportElementmode="Opaque"x="0"y="3"width="535"
height="15"backcolor="#70A9A9"/>
<box>
<bottomPenlineWidth="1.0"lineColor="#CCCCCC"/>
</box>
<textElement/>
<text><![CDATA[]]> </text>
</staticText>
<staticText>
<reportElementx="414"y="3"width="121"height="15"/>
<textElementtextAlignment="Center"
verticalAlignment="Middle">
<fontisBold="true"/>
</textElement>
<text><![CDATA[Country]]></text>
</staticText>
<staticText>
<reportElementx="0"y="3"width="136"height="15"/>
<textElementtextAlignment="Center"
verticalAlignment="Middle">
<fontisBold="true"/>
</textElement>
<text><![CDATA[Name]]></text>
</staticText>
</band>
</columnHeader>
<detail>
<bandheight="16">
<staticText>
<reportElementmode="Opaque"x="0"y="0"width="535"
height="14"backcolor="#E5ECF9"/>
<box>
<bottomPenlineWidth="0.25"lineColor="#CCCCCC"/>
</box>
<textElement/>
<text><![CDATA[]]> </text>
</staticText>
<textField>
<reportElementx="414"y="0"width="121"height="15"/>
<textElementtextAlignment="Center"
verticalAlignment="Middle">
<fontsize="9"/>
</textElement>
<textFieldExpressionclass="java.lang.String">
<![CDATA[$Fcountry]]>
</textFieldExpression>
</textField>
<textField>
<reportElementx="0"y="0"width="136"height="15"/>
<textElementtextAlignment="Center"
verticalAlignment="Middle"/>
<textFieldExpressionclass="java.lang.String">
<![CDATA[$Fname]]>
</textFieldExpression>
</textField>
</band>
</detail>
</jasperReport>
问件C:\tools\jasperreports-5.0.1\test\src\com\yiibai\DataBeanList.java 的内容如下:
package com.yiibai;
import java.util.ArrayList;
publicclassDataBeanList
publicArrayList<DataBean> getDataBeanList()
ArrayList<DataBean> dataBeanList =newArrayList<DataBean>();
dataBeanList.add(produce("Manisha","India"));
dataBeanList.add(produce("Dennis Ritchie","USA"));
dataBeanList.add(produce("V.Anand","India"));
dataBeanList.add(produce("Shrinath","California"));
return dataBeanList;
以上是关于jasperreports-server中的示例报表是怎么制作的的主要内容,如果未能解决你的问题,请参考以下文章
激光推送报错:APNs is not available,please check your provisioning profile and certification 和 设置别名问题(示例代码
错误记录:运行tensorflow示例代码报错“[WinError 10061] 由于目标计算机积极拒绝,无法连接。”