2

我有一个简单的Java程序,它接受一个.jrxml文件,编译它,然后填充它。报告的数据以XML文件的形式提供。填充完成后,数据导出为PDF

// Parse input document
Document document = JRXmlUtils.parse(new File(xmlFile));

// Set it as the data source in the parameters
parameters.put(JRXPathQueryExecuterFactory.PARAMETER_XML_DATA_DOCUMENT, document);

// Create and set the virtualizer
JRFileVirtualizer virtualizer = new JRFileVirtualizer(2, "/tmp");
virtualizer.setReadOnly(true);
parameters.put(JRParameter.REPORT_VIRTUALIZER, virtualizer);

// Fill the report
String jasperFile = designFile.replaceAll(".jrxml",".jasper");
print = JasperFillManager.fillReport(jasperFile, parameters);

// Export the report to PDF
ArrayList<JasperPrint> jasperPrints = new ArrayList<JasperPrint>();
jasperPrints.add(print);
JRPdfExporter exp = new JRPdfExporter();
exp.setParameter (JRExporterParameter.JASPER_PRINT_LIST, jasperPrints);
exp.setParameter(JRExporterParameter.OUTPUT_FILE_NAME, outFileName );
exp.exportReport();

我的困惑是关于出口

上面的那条填充线非常适合小型报告,但是一旦我得到一个接近 1/2 MB 的XML源文件,它就会旋转一天以上,而不管设置文件虚拟器(我这样做)。

我看到还有另一种方法叫做fillReportToSteam. 我的困惑是fillReport,我必须做一个额外的步骤才能导出为 PDF。正在写入哪种流fillReportToStream,我该如何指定?会fillReportToStream写入PDF文件吗?

我找不到任何例子。我希望我可以利用流,以便我可以衡量进度并让这些PDF在正常的时间内完成。

4

2 回答 2

2

调用fillReportToStream仍然会产生一个JasperPrint对象,但它会直接将其写入输出流,而不是将其传回给您。不能以任何其他格式输出报告,因此JasperFillManager不能跳过导出步骤。要生成 PDF,您仍然需要JRPdfExporter从输出流写入的任何位置使用和读取填充的报告。

我认为这里的问题是您的文件虚拟器。您提到“无论设置文件虚拟器如何,它都会旋转一天以上”,但虚拟器实际上会使该过程花费更长的时间。这是避免内存不足错误的基本时间/内存权衡,但会使填充速度慢得多。在我见过的基准测试中,添加文件虚拟器使填充时间翻了两番!

如果您确实需要虚拟器,请尝试增加您传递的 maxSize 参数。2 看起来非常低。您也可以尝试切换到 a JRSwapFileVirtualizer,因为我听说它们的性能要好得多。

于 2012-11-05T11:46:04.733 回答
1

使用示例:

    public class ExporterReport {
    private byte[] report = null;
    private String reportName = "myreport";
    protected Collection<? extends Object> getData() {
        //TODO: return your collection
    }
    protected String getReportPath() {
        return "/report/myreport.jasper";
    }   
    public final void buildReportXLS() {        
        Map<String, Object> params = new HashMap<String, Object>();
        try {
            params.put("text", "sametext");
            String reportUrl = getReportPath();
            Collection<? extends Object> collection = getData();
            if (!collection.isEmpty()) {
                URL urlJasper  = FacesContext.getCurrentInstance().getExternalContext().getResource(reportUrl);
                JRDataSource data = new JRBeanCollectionDataSource(collection);
                JasperPrint jasperPrint = null;
                try {
                     jasperPrint = JasperFillManager.fillReport(urlJasper.getPath(), params, data);
                     if (jasperPrint != null) {
                        /**
                         * 1- export to PDF sample
                         */
                        //JasperExportManager.exportReportToPdfFile(jasperPrint, "C://sample_report.pdf");

                        /**
                         * 2- export to HTML Sample
                         */
                        //JasperExportManager.exportReportToHtmlFile(jasperPrint,"C://sample_report.html");

                        /**
                         * 3- export to Excel sheet
                         */
                        JRXlsExporter exporter = new JRXlsExporter();

                        ByteArrayOutputStream xlsReport = new ByteArrayOutputStream();
                        exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);
                        exporter.setParameter(JRExporterParameter.OUTPUT_STREAM, xlsReport);
                        exporter.setParameter(JRXlsExporterParameter.IS_ONE_PAGE_PER_SHEET, Boolean.FALSE);
                        exporter.setParameter(JRXlsExporterParameter.IS_DETECT_CELL_TYPE, Boolean.TRUE);
                        exporter.setParameter(JRXlsExporterParameter.IS_WHITE_PAGE_BACKGROUND, Boolean.FALSE);
                        exporter.setParameter(JRXlsExporterParameter.IS_IGNORE_GRAPHICS,Boolean.FALSE);
                        exporter.setParameter(JRXlsExporterParameter.IS_REMOVE_EMPTY_SPACE_BETWEEN_ROWS,Boolean.TRUE);
                        exporter.exportReport();
                        xlsReport.flush();
                        xlsReport.close();
                        this.setReport(xlsReport.toByteArray());
                     }
                  } catch (JRException e) {
                     e.printStackTrace();
                  }             

                if (log.isInfoEnabled()) {
                    log.info("Report build successful", reportName);
                }
        } catch (Exception e) {
                log.error("has a error {0} in {1}: {2} [{3}]", e, reportName, new Date(), e.getMessage(), "information");
        }
    }

    public void downloadReportXLS() {
        if (this.getReport() != null) {
            this.downloadFile(this.getReport(), reportName + ".xls");
        }
    }

    private void downloadFile(byte[] bytes, String fileName) {
        try {
            String contentType = null;
            FacesContext facesContext = FacesContext.getCurrentInstance();
            HttpServletResponse response = (HttpServletResponse) facesContext.getExternalContext().getResponse();

            if (fileName.lastIndexOf('.') != -1) {
                contentType = URLConnection.getFileNameMap().getContentTypeFor(fileName);
            }

            if (StringUtil.isStringEmpty(contentType)) {
                contentType = "application/octet-stream";
            }

            response.setContentType(contentType);
            response.addHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");
            response.addHeader("Pragma", "no-cache");
            response.setDateHeader("Expires", 0);  
            response.setContentLength(bytes.length);

            ServletOutputStream os = response.getOutputStream();
            os.write(bytes);
            os.flush();
            os.close();
            facesContext.responseComplete();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }   
}

在您的 xhtml 中,您可以输入以下内容:

<h:commandButton value="Export to sheet" actionListener="#{exportReport.buildReportXLS()}" action="#{exportReport.downloadReportXLS()}" />
于 2014-10-01T13:48:13.027 回答