我编写了小型 Java 程序来练习Jasper Reports。
下面是我的 java 程序,它将生成报告并导出为 PDF。
public class BaseReporter {
public static void main(String[] args) {
try {
InputStream inputStream = BaseReporter.class.getResourceAsStream("/reports/helloworld.jasper");
DataBeanMaker dataBeanMaker = new DataBeanMaker();
ArrayList<DataBean> dataBeanList = dataBeanMaker.addDataBean();
JRBeanCollectionDataSource JRbeancollectiondatasource = new JRBeanCollectionDataSource(dataBeanList);
Map<String, Object> parameters = new HashMap<String, Object>();
parameters.put("Created By", "xxx");
parameters.put("StylePath", "d:/Learn-WS/Jasper/src/reports/jr.jrtx");
// Export to PDF
JasperPrint jasperPrint = JasperFillManager.fillReport(inputStream, parameters, JRbeancollectiondatasource);
JasperExportManager.exportReportToPdfFile(jasperPrint, "d:/Learn-WS/Jasper/src/reports/helloworld.pdf");
System.out.println("report process completed ....");
}
catch(Exception e) {
System.out.println(e.getMessage());
}
}
}
我的包结构是
project
src
com
BaseReport.java
DataBean.java
DataBeanMaker.java
reports
helloworld.jasper
helloworld.jrxml
jr.jrtx
jr.properties
在jr.properties文件中,我添加了要在报告中使用的属性。report.name="检测报告"
我已将我的资源包名称包含在 jasperReport 标记中的 helloworld.jrxml 文件中,其属性名为resourceBundle="jr"。
我将报告中的资源包属性称为
<title>
<band height="30">
<staticText>
<reportElement uuid="6fbe7eb7-04cd-4c03-bc6e-b2cda3026d3b" mode="Opaque" x="0" y="3" width="535" height="23"/>
<textElement textAlignment="Center">
<font size="14" isBold="true"/>
</textElement>
<text><![CDATA[$R{report.name}]]></text>
</staticText>
</band>
</title>
但是资源包属性未在报告中正确加载/定位。
请帮助我,并提前感谢。