将ireport得到的.jasper文件转为html和pdf文件

本文介绍如何使用JasperReports在Java Web应用中生成HTML和PDF格式的报表。通过两个示例,分别展示了如何创建并导出报表到这两种格式,并详细解释了每个步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

前提操作:将要转的jasper文件放到webcontent下,可专门建一个文件夹,此处为report。
转为html文件:
在WebRoot根目录下创建jsp文件testhtml.jsp,内容如下:
<%@  page  contentType = "text/html;charset=GB2312" %>
<%@  page  import = "net.sf.jasperreports.engine.*" %>
<%@  page  import = "java.util.*" %>
<%@  page  import = "java.io.*" %>
<%@  page  import = "java.sql.*" %>
<%
  // 报表编译之后生成的 .jasper 文件的存放位置
 File reportFile = new  File( this .getServletContext().              (1)
getRealPath( "/report/sample.jasper" ));
 
 String url= "jdbc:mysql://localhost:3306/db" ;
 Class.forName( "com.mysql.jdbc.Driver" );
 Map parameters = new  HashMap();
  //"SQLSTR" 是报表中定义的参数名称 , 其类型为 String
  // 设置 SQLSTR 参数的内容 , 根据需要赋值 sql 语句
 parameters.put( "SQLSTR" , "select * from employee" );               (2)
 Connectionconn =DriverManager.getConnection(url,                (3)
"username" , "password" );
 JasperRunManager.runReportToHtmlFile(reportFile.getPath(),       (4)
parameters,conn);
 response.sendRedirect( "report/sample.html" );                        (5)

.//将html文件存储下来
 File destFile =new File("D:\\test.html");
 JasperRunManager.runReportToHtmlFile(reportFile.getPath(), destFile.getPath(), parameters, Connectionconn);
destFile.createNewFile();
%>
代码说明:
1.     定位jasper文件
2.     给报表模板中使用到的参数SQLSTR赋值,这里指定一个sql语句
3.     采用JDBC方式连结数据库
4.     生成HTML文件,参数分别为报表文件模板物理位置,报表参数,数据库连结
5.     转向到此页面,这个页面是固定的,需要和报表模板的位置和路径相同
发布项目后预览,输入 http://localhost:8080/iReportTest/testhtml.jsp(本例采用tomcat作为web服务器,发布过程参考其他文档,数据库采用的mysql)
效果:
4.8 创建显示PDF格式报表的JSP文件
在WebRoot根目录下创建jsp文件testpdf.jsp,内容如下:
<%@  page  contentType = "application/pdf;charset=UTF-8" %>
<%@  page  import = "net.sf.jasperreports.engine.*" %>
<%@  page  import = "java.util.*" %>
<%@  page  import = "java.io.*" %>
<%@  page  import = "java.sql.*" %>
<%
  // 报表编译之后生成的 .jasper 文件的存放位置
 File reportFile = new  File( this .getServletContext().
getRealPath( "/report/sample.jasper" ));
 
 String url= "jdbc:mysql://localhost:3306/db" ;
 Class.forName( "com.mysql.jdbc.Driver" );
 Map parameters = new  HashMap();
  //"SQLSTR" 是报表中定义的一个参数名称 , 其类型为 String
 parameters.put( "SQLSTR" ,
  "select * from employee where employee_id like 'Z%'" );
 Connection conn = DriverManager.getConnection(url,
"username" , "password" );
 
  byte [] bytes=JasperRunManager.
runReportToPdf(reportFile.getPath(),parameters,conn);
 
 response.setContentType( "application/pdf" );
 response.setContentLength(bytes.length);
 
 ServletOutputStream outStream = response.getOutputStream();
 outStream.write(bytes,0,bytes.length);
 outStream.flush();
 outStream.close();
 out.clear();
 out = pageContext.pushBody();
%>

参考自http://blog.youkuaiyun.com/trocp/article/details/6910745
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值