打印报告会使Apache无法响应

时间:2013-07-03 08:42:43

标签: java apache web-applications jasper-reports

问题通过 jsp 打印报告时发生。

首先,我认为它更像是一个内存错误,即 NetBeans 的permgen空间,但是当你部署应用程序并且它变为活动时它不应该发生但问题仍然存在。

报告打印适用于前6-7个报告,然后应用程序无响应并再次使用它我必须停止 Apache 并再次运行应用程序

以下是我用于通过 jsp

打印报告的代码
try {
    JasperReport jasperReport;
    JasperPrint jasperPrint;
    JasperDesign jasperdesign;
    String path = getServletContext().getRealPath("/reports/admissionReport.jrxml");
    String imagepath = getServletContext().getRealPath("/images//");
    String imageSubPath = File.separatorChar + "";
    imagepath = imagepath + imageSubPath;
    jasperdesign = JRXmlLoader.load(path);
    jasperReport = JasperCompileManager.compileReport(jasperdesign);
    Connection con = this.getServiceFactory().getReportService().getDao().getJdbcTemplate().getDataSource().getConnection();
    paramMap.put("imagePath", imagepath);
    jasperPrint = JasperFillManager.fillReport(jasperReport, paramMap, con);
    JasperExportManager.exportReportToPdfFile(jasperPrint, getServletContext().getRealPath("/reports/admissionReport.pdf"));
    String filename = getServletContext().getRealPath("/reports/admissionReport.pdf");
    File rtf = new File(filename);
    int readBytes = 0;
    response.setContentType("application/pdf");
    response.setHeader("Cache-Control", "max-age=30");
    response.setHeader("Content-disposition", "inline; filename=\"admissionReport\"");
    response.setContentLength((int) rtf.length());
    input = new FileInputStream(rtf);
    BufferedInputStream buf = new BufferedInputStream(input);
    OutputStream stream = response.getOutputStream();
    while ((readBytes = buf.read()) != -1) {
        stream.write(readBytes);
    }
    stream.flush();
    stream.close();
} catch (Exception exp) {
    throw new Exception("Error occured while saving record.." + exp.getMessage());
} finally {
    if (input != null) {
        input.close();
    }
}

到目前为止,我无法通过互联网找到解决方案。

P.S我正在使用 Spring 框架进行开发。

我想知道是否有人能解决这个问题。

1 个答案:

答案 0 :(得分:1)

缺少

buf.close();那时不需要input.close()。目前有点不确定stream.close()是否反对 - 但它确实有效。您可以尝试con.close()

提示:

response.setHeader("Content-Length", String.valueOf(rtf.length()));

Files.copy(rtf.toPath(), stream);

最后一个是Java 7实用程序,用于将文件复制到流中,替换字节读取,即使使用BufferedInputStream也不是最佳。