开发者

Print JasperReports client-side?

开发者 https://www.devze.com 2023-02-04 23:30 出处:网络
I have developed a web application that uses JasperReports. I noticed that the reports a开发者_Python百科re printing server-side.

I have developed a web application that uses JasperReports. I noticed that the reports a开发者_Python百科re printing server-side.

How do you make the reports print client-side (from the web browser)?

Any insights will be helpful.


Presuming you have a Servlets-based architecture:

  1. Get a handle on the HttpServletResponse instance with HttpServletResponse response = this.getThreadLocalResponse(); (for instance).
  2. Set the various headers to indicate a file attachment.
    HttpServletResponse response = getServletResponse();
    response.setHeader( "Content-Description", "File Transfer" );
    response.setHeader( "Content-Disposition", "attachment; filename=" +
      "report.pdf" );
    response.setHeader( "Content-Type", "application/pdf" );
    response.setHeader( "Content-Transfer-Encoding", "binary" );
    
  3. Configure the JRExporter (jre) to use the HttpServletRespone's output stream:
        jre.setParameter( JRExporterParameter.OUTPUT_STREAM, getOutputStream() );
    
  4. Execute the report.

The browser will prompt the user to save the report as a PDF file. The user can print the PDF.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号