How to export JasperReport to HTML?

匿名 (未验证) 提交于 2019-12-03 01:06:02

问题:

I have created one .jasper file for my project. I am getting an output in JasperViewer window, but instead of that I want to see it in HTML output form. How can I do that?

回答1:

Jasper report project comes with a sample code to export reports to HTML. It's not only a single HTML file, but at least it requires a 1x1 transparent gif used for decorating. It's not a good idea to export reports to HTML files because of portability and printing issues. You can however show HTML reports inside your webserver (which is very commone) using that sample code. See \demo\samples\webapp application for more details.



回答2:

The following code will generate a HTML report:

private DataSource jasperDataSource; private String jasperReportDir;  public void generateHtmlReport(String reportPath, String reportCode, String outputLocation,                                Map params) throws Exception {      Connection connection=null;     try     {         connection = jasperDataSource.getConnection();          JasperReport  jasperReport = (JasperReport) JRLoader.loadObject(jasperReportDir + "/" + reportPath + "/" + reportCode + ".jasper");          params.put(JRParameter.REPORT_FILE_RESOLVER, new SimpleFileResolver(new File(jasperReportDir + "/" + reportPath)));          JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, params, connection);          JasperExportManager.exportReportToHtmlFile(jasperPrint,outputLocation +reportCode+".html");      }     finally     {         if (connection!=null)         {             connection.close();         }     } } 

Exports the generated report object into HTML format, placing the result into the second file parameter.

The images are placed as distinct files inside a directory having the same name as the HTML destination file, plus the "_files" suffix.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!