JasperReport报表设计总结

共三篇,下接:http://jimmy-shine.iteye.com/blog/123595

为了开发报表,已经拜读了一大堆的资料,其中大部分是重复的。可以看得出,国人还是比较热衷于copy&paste的工作。所以找了一大堆的资料都是相同的,或者可以用一个词来形容,换汤不换药的。
有必要对于jasper Report的学习进度进行一下总结,一来可以更新一下以前的资料中的一些旧得不能再旧的不再适用的东西,二来让后来者可以轻松的上手。
首先,jasperReport是一个以java实现的报表工具,(好像是句废话)。可以实现多种格式的报表。
再我们先理解一下jasperReport的实现过程。笔者不再画图,网上到处都是。
1)定制报表格式。
  有二种方式,一种就是写jrxml文件,其实就是xml文件,只不过是后缀名不一样罢了。另一种方式更直接,就是生成一个JasperDesign类的实例,在japsperDesign中自己定义模板。jrxml文件也是通过一个JRXmlLoad加载过来,转成JasperDesign类的实例。也就是说写jrxml文件还需要进行解析,加载。现实中我们使用的报表一般格式比较固定,因而可以通过先使用iReport工具生成模板,再加载解析的方式。这种方式简单,而且可见性强。
2)填充数据。
  在最新版(2007.4.30发布)的jasperReports1.3.3中,支持了很多的格式,包括了对于Hibernate的支持。填充数据对于我们经常使用的来说,一般是二种方式,一种方式是通过JDBC连接提供数据源,一种就是通过javaBean的集合提供数据源。当然还有web Service的xml文件提供的。我的建议是,如果你的程序中的统计直接使用Jdbc就可以完成,那么就使用jdbc数据源的方法,反之,使用javaBean的集合是不错的选择,因为这样不会在意你的数据的来源,你也可以任意处理,比如说,要通过权限检查的数据才在报表中生成的话,就可以过滤到不符合权限的数据。
3)显示或打印。
  显示,即将JasperReport生成的文件直接显示出来,打印所使用的方式其实就是生成文件,然后调用打印来对文件进行打印。
看起来是不是很简单,对,确实很简单。
笔者主要从事基于B/S模式的开发,相信大部分人的使用也是基于web进行使用。故笔者对于基于web的开发进行详细讲述。

1、工程环境配置。
将以下包加入WEB-INF/lib中。
commons-beanutils-1.7.jar;commons-collections-2.1.jar;commons-digester-1.7.jar;commons-logging-1.0.2.jar;commons-logging-api-1.0.2.jar;itext-1.3.1.jar;jasperreports-1.3.3.jar;jdt-compiler-3.1.1.jar;jxl-2.6.jar;png-encoder-1.5.jar;poi-2.0-final-20040126.jar
   以上包是jasperReport必须。
2、iReport的安装
   这个很简单,直接下一步就可以了。
3、使用iReport生成 .jasper文件
.jasper是经过编译的japserReport模板,即.jrxml编译后的。
对于iReport的使用网络上已经有了详细的中文的文档,具体可以下载附件查看。使用.jasper文件可以避免在系统中再进行编译,增加系统的压力。
4、数据填充
数据填充是相对于比较重要的一步,数据填充的目的是为了将数据填充进去,生成一个JapserPrint对象。笔者在之前已经阐述过,现在主要是基于关系型数据库(比较简单的,没有权限控制的),以及基于JavaBean Collection进行数据填充。进行数据填充的基本就是一定要实现JRDataSource,JRDataSource定义了二个方法,一个是指针移动的方法next(),另一个是取值的getFieldValue()方法,用来取值填充。
对于关系型数据库,即直接利用数据库的表来生成报表的,只需要传入一个Java Connection即可。JasperReport已经有了个默认的实现的JRDataSource的接口了。对于Java Conncetion的获得,笔者建议使用工厂方法或者使用Spring方式来获得。可以参照笔者写的如下:

java 代码
 
  1.   
  2. package cn.com.reachway.framework.report;   
  3.   
  4. import java.sql.Connection;   
  5. import java.sql.DriverManager;   
  6.   
  7. import cn.com.reachway.framework.exception.JasperReportException;   
  8.   
  9.   
  10. public class JDBCConnection {   
  11.    
  12.  private String jdbcDriver;   
  13.    
  14.  private String jdbcUrl;   
  15.   
  16.  private String dbUser;   
  17.   
  18.  private String dbPassword;   
  19.   
  20.  public String getDbPassword() {   
  21.   return dbPassword;   
  22.  }   
  23.   
  24.  public void setDbPassword(String dbPassword) {   
  25.   this.dbPassword dbPassword;   
  26.  }   
  27.   
  28.  public String getDbUser() {   
  29.   return dbUser;   
  30.  }   
  31.   
  32.  public void setDbUser(String dbUser) {   
  33.   this.dbUser dbUser;   
  34.  }   
  35.   
  36.  public String getJdbcDriver() {   
  37.   return jdbcDriver;   
  38.  }   
  39.   
  40.  public void setJdbcDriver(String jdbcDriver) {   
  41.   this.jdbcDriver jdbcDriver;   
  42.  }   
  43.   
  44.  public String getJdbcUrl() {   
  45.   return jdbcUrl;   
  46.  }   
  47.   
  48.  public void setJdbcUrl(String jdbcUrl) {   
  49.   this.jdbcUrl jdbcUrl;   
  50.  }   
  51.   
  52.  public JDBCConnection() {   
  53.   super();   
  54.  }   
  55.    
  56.  public Connection getConnection() throws JasperReportException {   
  57.   Connection con;   
  58.   try {   
  59.    check();   
  60.    Class.forName(this.jdbcDriver);   
  61.    con DriverManager.getConnection(this.jdbcUrl, this.dbUser, this.dbPassword);   
  62.    return con;   
  63.   catch (Exception e) {   
  64.    e.printStackTrace();   
  65.    throw new JasperReportException("Get JDBC Connection Error");   
  66.   }   
  67.  }   
  68.     
  69.    
  70.  private void check() throws JasperReportException {   
  71.   if (this.jdbcDriver == null || this.jdbcDriver.equals("") || this.jdbcUrl == null || this.jdbcUrl.equals("")   
  72.     || this.dbUser == null || this.dbUser.equals("") || this.dbPassword == null) {   
  73.    throw new JasperReportException("Jdbc Configure error!");   
  74.   }   
  75.  }   
  76.   
  77. }   
  78.   


java 代码
 
  1.   
  2. package cn.com.reachway.framework.report.dataSource;   
  3.   
  4. import net.sf.jasperreports.engine.JRDataSource;   
  5. import net.sf.jasperreports.engine.JRException;   
  6. import net.sf.jasperreports.engine.JRField;   
  7.   
  8.   
  9. public abstract class ReportDataSource implements JRDataSource {   
  10.   
  11.    
  12.  public abstract Object getFieldValue(JRField jrField) throws JRException;   
  13.   
  14.    
  15.  public abstract boolean next() throws JRException;   
  16.   
  17. }   
  18.   
  这样可以共用配置文件中的jdbc连接的相关参数。
对于其它的数据源,JavaBean Collection,笔者采用了一个抽象类,使用抽象类的目的,是为了使开发者尽可能不用直接接触jasperReport(此为笔者自己的方式,笔者是PM,为了考虑底下的人的开发)。以下为抽象类以及笔者提供的一个sample:
 
  1.   
  2. package cn.com.reachway.framework.report.dataSource;   
  3.   
  4. import java.util.ArrayList;   
  5. import java.util.List;   
  6.   
  7. import net.sf.jasperreports.engine.JRException;   
  8. import net.sf.jasperreports.engine.JRField;   
  9.   
  10.   
  11. public class ReportDataSourceSample extends ReportDataSource {   
  12.   
  13.  private List docs new ArrayList();   
  14.   
  15.  private int index -1;   
  16.   
  17.  public ReportDataSourceSample() {   
  18.   for (int 0; 10; i++) {   
  19.    Document doc new Document("ViewTimes is:" i, i);   
  20.    this.docs.add(doc);   
  21.   }   
  22.  }   
  23.   
  24.  // 内部类,作为demo时使用   
  25.  private class Document {   
  26.   private String name;   
  27.   
  28.   private int viewTimes;   
  29.   
  30.   public String getName() {   
  31.    return name;   
  32.   }   
  33.   
  34.   public void setName(String name) {   
  35.    this.name name;   
  36.   }   
  37.   
  38.   public int getViewTimes() {   
  39.    return viewTimes;   
  40.   }   
  41.   
  42.   public void setViewTimes(int viewTimes) {   
  43.    this.viewTimes viewTimes;   
  44.   }   
  45.   
  46.   public Document() {   
  47.   }   
  48.   
  49.   public Document(String name, int viewTimes) {   
  50.    this.name name;   
  51.    this.viewTimes viewTimes;   
  52.   }   
  53.  }   
  54.   
  55.  public List getDocs() {   
  56.   return docs;   
  57.  }   
  58.   
  59.  public void setDocs(List docs) {   
  60.   this.docs docs;   
  61.  }   
  62.   
  63.  @Override  
  64.  public Object getFieldValue(JRField jrField) throws JRException {   
  65.   
  66.   String fieldName jrField.getName();   
  67.   Document doc this.docs.get(index);   
  68.   if ("name".equals(fieldName)) {   
  69.    return doc.getName();   
  70.   }   
  71.   if ("viewTimes".equals(fieldName)) {   
  72.    return doc.getViewTimes();   
  73.   }   
  74.   return null;   
  75.  }   
  76.   
  77.  @Override  
  78.  public boolean next() throws JRException {   
  79.   index++;   
  80.   return (index this.docs.size());   
  81.  }   
  82. }   
  83.   
java 代码

以上的例子应当很清楚的写明了如何生成数据源。
对于数据源的填充,笔者使用了二个类,分别用来对应使用Connction及JavaBean Collection进行填充。

java 代码
 
  1.   
  2. package cn.com.reachway.framework.report.jasperPrint;   
  3.   
  4. import java.io.File;   
  5. import java.sql.Connection;   
  6. import java.util.Map;   
  7.   
  8. import net.sf.jasperreports.engine.JRException;   
  9. import net.sf.jasperreports.engine.JasperFillManager;   
  10. import net.sf.jasperreports.engine.JasperPrint;   
  11. import net.sf.jasperreports.engine.JasperReport;   
  12. import net.sf.jasperreports.engine.util.JRLoader;   
  13. import cn.com.reachway.framework.exception.JasperReportException;   
  14.   
  15.   
  16. public class JasperPrintWithConnectio{   
  17.    
  18.  private Map params;   
  19.    
  20.  private String reportFilePath;   
  21.    
  22.  private Connection con;   
  23.   
  24.  public Connection getCon() {   
  25.   return con;   
  26.  }   
  27.   
  28.  public void setCon(Connection con) {   
  29.   this.con con;   
  30.  }   
  31.   
  32.  public Map getParams() {   
  33.   return params;   
  34.  }   
  35.   
  36.  public void setParams(Map params) {   
  37.   this.params params;   
  38.  }   
  39.   
  40.  public String getReportFilePath() {   
  41.   return reportFilePath;   
  42.  }   
  43.   
  44.  public void setReportFilePath(String reportFilePath) throws JasperReportException {   
  45.   if (reportFilePath == null || !reportFilePath.endsWith(".jasper"))   
  46.    throw new JasperReportException("您传入的模板文件格式不对,请传入以.jasper为后缀的文件!");   
  47.   this.reportFilePath reportFilePath;   
  48.  }   
  49.   
  50.  public JasperPrintWithConnection() {   
  51.   super();   
  52.  }   
  53.   
  54.  public JasperPrintWithConnection(String reportFilePath, Map params, Connection con) throws JasperReportException {   
  55.   if (reportFilePath == null || !reportFilePath.endsWith(".jasper"))   
  56.    throw new JasperReportException("模板文件格式不对,请传入以.jasper为后缀的文件!");   
  57.   if (con == null)   
  58.    throw new JasperReportException("Conncetion不应当为null!");   
  59.   this.setReportFilePath(reportFilePath);   
  60.   this.setParams(params);   
  61.   this.setCon(con);   
  62.  }   
  63.     
  64.    
  65.  public JasperPrint getJasperPrint() throws JasperReportException {   
  66.   File reportFile new File(this.reportFilePath);   
  67.   if (!reportFile.exists())   
  68.    throw new JasperReportException("传入的模板文件不存在!");   
  69.   
  70.   try {   
  71.    // Load编译好的模板   
  72.    JasperReport jasperReport (JasperReport) JRLoader.loadObject(reportFile.getPath());   
  73.    // 进行数据填充   
  74.    JasperPrint jasperPrint JasperFillManager.fillReport(jasperReport, this.params, this.con);   
  75.    return jasperPrint;   
  76.   
  77.   catch (JRException jre) {   
  78.    jre.printStackTrace();   
  79.    throw new JasperReportException("在进行数据填充时发生了错误中,请检查是否是数据库连接错误或者是用来填充的参数map有误!");   
  80.   }   
  81.   
  82.  }   
  83. }   
  84.   
 
  1.   
  2. package cn.com.reachway.framework.report.jasperPrint;   
  3.   
  4. import java.io.File;   
  5. import java.util.Map;   
  6.   
  7. import net.sf.jasperreports.engine.JRDataSource;   
  8. import net.sf.jasperreports.engine.JRException;   
  9. import net.sf.jasperreports.engine.JasperFillManager;   
  10. import net.sf.jasperreports.engine.JasperPrint;   
  11. import net.sf.jasperreports.engine.JasperReport;   
  12. import net.sf.jasperreports.engine.util.JRLoader;   
  13. import cn.com.reachway.framework.exception.JasperReportException;   
  14.   
  15.   
  16. public class JasperPrintWithDataSourc{   
  17.    
  18.  private Map params;   
  19.    
  20.  private String reportFilePath;   
  21.    
  22.  private JRDataSource dataSource;   
  23.   
  24.  public JRDataSource getDataSource() {   
  25.   return dataSource;   
  26.  }   
  27.   
  28.  public void setDataSource(JRDataSource dataSource) {   
  29.   this.dataSource dataSource;   
  30.  }   
  31.   
  32.  public Map getParams() {   
  33.   return params;   
  34.  }   
  35.   
  36.  public void setParams(Map params) {   
  37.   this.params params;   
  38.  }   
  39.   
  40.  public String getReportFilePath() {   
  41.   return reportFilePath;   
  42.  }   
  43.   
  44.  public void setReportFilePath(String reportFilePath) throws JasperReportException {   
  45.   if (reportFilePath == null || !reportFilePath.endsWith(".jasper"))   
  46.    throw new JasperReportException("您传入的模板文件格式不对,请传入以.jasper为后缀的文件!");   
  47.   this.reportFilePath reportFilePath;   
  48.  }   
  49.   
  50.  public JasperPrintWithDataSource() {   
  51.   super();   
  52.  }   
  53.   
  54.  public JasperPrintWithDataSource(String reportFilePath, Map params, JRDataSource dataSource)   
  55.    throws JasperReportException {   
  56.   if (reportFilePath == null || !reportFilePath.endsWith(".jasper"))   
  57.    throw new JasperReportException("模板文件格式不对,请传入以.jasper为后缀的文件!");   
  58.   if (dataSource == null)   
  59.    throw new JasperReportException("DataSource不应当为null!");   
  60.   this.setReportFilePath(reportFilePath);   
  61.   this.setParams(params);   
  62.   this.setDataSource(dataSource);   
  63.  }   
  64.    
  65.  public JasperPrint getJasperPrint() throws JasperReportException {   
  66.   File reportFile new File(this.reportFilePath);   
  67.   if (!reportFile.exists())   
  68.    throw new JasperReportException("传入的模板文件不存在!");   
  69.   
  70.   try {   
  71.    // Load编译好的模板   
  72.    JasperReport jasperReport (JasperReport) JRLoader.loadObject(reportFile.getPath());   
  73.    // 进行数据填充   
  74.    JasperPrint jasperPrint JasperFillManager.fillReport(jasperReport, this.params, this.dataSource);   
  75.    return jasperPrint;   
  76.   
  77.   catch (JRException jre) {   
  78.    jre.printStackTrace();   
  79.    throw new JasperReportException("在进行数据填充时发生了错误中,请检查是否是数据库连接错误或者是用来填充的参数map有误!");   
  80.   }   
  81.   
  82.  }   
  83. }   
  84.   
java 代码

其中使用的JasperReportException为笔者定义的异常,用来统一处理报表异常。

5、报表产生
报表产生是程序中最终可见的一部分,在jasperReport的demo中,大部分中使用了jasperReport的net.sf.jasperreports.j2ee.servlets.*中的类来生成。其实这也算是开源的产品的一个问题,其实jasperReport提供的report的工具,只能算是demo级别的,不能算是产品级别的。相信很多的朋友在使用的时候就碰上无法生成的问题。笔者在此基础上封装了一下。
具体参见以下:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值