在这里,我试图将我的 Java 程序中的数据源提供给 jasper 文件。
这是我的代码:
InputStream reportStream = new FileInputStream("C:/Documents and Settings/report2.jrxml");
JRDataSource datasource = new JRBeanCollectionDataSource(allEnergy_Caliberation, true);
JasperReport report = JasperCompileManager.compileReport(reportStream);
System.out.println("above error");
JasperPrint print = JasperFillManager.fillReport(report, parameters, datasource);
我需要在报告中传递数据源并想打印它的值。
同样,在摘要部分的同一个 jrxml 文件中,我添加了子报表,我还需要为此子报表提供值。
请通过提供步骤帮助我。