絕大多數 WEB 項目都會有報表開發的模塊,對於客戶來講能夠直觀瞭解各項數據的產生和使用狀況,筆者最近接觸的小貸系統也有報表打印模塊,也參與到了報表開發中,這也是我第一次接觸報表開發,這篇文章算是對完成以後的一番總結吧!html
筆者接觸的報表開發使用的工具是 ireport,iReport 是一個可以建立複雜報表的開源項目,使用純 Java 編寫,擁有很是豐富的圖形界面,而且它能調用 JasperReports 庫應用於任何一種 java 應用程序,JasperReports 支持 PDF、HTML、XLS、CSV 和 XML 文件輸出格式,是開源報表工具中比較經常使用的。java
這裏我就用一個 web projects 來演示如何打印一張報表,包括 PDF、excel 格式的mysql
具體可視狀況而定,若是隻要打印 pdf 能夠去掉一些 jar 包的,這裏我由於excel、htlml、ttf 等各類格式都打印了,因此所有加上吧;另外版本必定要對應:我用的是ireport5.6,jasperreports-5.6.0.jar 、 jasper-compiler-jdt-5.5.15.jar 、iText-2.1.7.js2.jar 也要是高版本,不然會報錯,空指針之類的。web
報表的操做很簡單,只要拖動、設置各類控件,就能迅速獲得本身想要的報表,而經過數據的輸入能夠獲得各類圖表,這裏就不詳述 ireport 工具的操做使用了,我畫的報表界面以下:sql
爲了簡便,我就在 index.jsp 頁面寫了兩超連接,分別打印 PDF 和 EXCEL 格式的報表,以下:數據庫
<body>
<a href="TestReport?type=pdf">PDF導出</a>
<br/>
<a href="TestReport?type=excel">excel導出</a>
</body>
複製代碼
鏈接數據庫瀏覽器
public static Connection getConnection() {
Connection connection = null;
try {
Class.forName("com.mysql.jdbc.Driver");
connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/loans", "root", "root");
} catch (Exception e) {
e.printStackTrace();
}
return connection;
}
複製代碼
查詢數據庫表數據app
public static List selectAll(String sql){
ResultSet rs = null;
Statement statement = null;
Connection conn = null;
List dataList = new ArrayList();
try {
conn = getConnection();
statement = conn.createStatement();
rs = statement.executeQuery(sql);
MakeLoanDetail makeLoanDetail = null;
while (rs.next()){
makeLoanDetail = new MakeLoanDetail();
//把值 set 到 javabean 對象
makeLoanDetail.setCustName(rs.getString(1));
makeLoanDetail.setCustIdNo(rs.getString(2));
makeLoanDetail.setBrdName(rs.getString(3));
makeLoanDetail.setApprAmt(rs.getDouble(4));
makeLoanDetail.setApprTerm(rs.getInt(5));
makeLoanDetail.setActvSysDt(rs.getDate(6));
makeLoanDetail.setActvUserId(rs.getString(7));
//最後把對象添加到 list 集合中去,dataList 將最終傳到報表中去
dataList.add(makeLoanDetail);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally {
//這裏關閉 rs,statement,conn 資源
}
return dataList;
}
複製代碼
public class TestReport extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
Map parameterMap = new HashMap();
parameterMap.put("PRINT_DATE", new Date());//此處的鍵值對應報表 parameter 中的字段
String reportMode = "";
String type = request.getParameter("type");
if (type.equals("pdf")) {
reportMode = "pdf";
}else if (type.equals("excel")) {
reportMode = "excel";
}
String reportName = "WhLoan_Detail_Report";//報表名字,打印出來的報表名
String reportId = "WhLoan_Detail_Report";//報表Id,對應於webroot/report/jrxml 你保存的報表名
String sql = "SELECT CI.CUST_NAME,CI.cust_id_no,LB.BRD_NAME,APPR_AMT,APPR_TERM,ACTV_SYS_DT,ACTV_USER_ID"
+" FROM loan,cust_info CI,LOAN_BRD LB"//注意 FROM 前要有空格
+" WHERE loan.CUST_ID_CTRY = CI.CUST_ID_CTRY"//空格
+" AND LOAN.CUST_ID_NO = CI.CUST_ID_NO"//空格
+" AND LOAN.CUST_ID_TYPE = CI.CUST_ID_TYPE"
+" AND LOAN.LOAN_BRD = LB.BRD_ID";
try {
List dataList = SqlHelper.selectAll(sql);
ReportExporter.exportReport(request, response, reportId, reportMode, parameterMap, dataList, reportName);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
this.doGet(request, response);
}
}
複製代碼
考慮到各大瀏覽器的兼容性,最好將 reportName 用英文而不是中文eclipse
ReportExporter 封裝了導出 pdf,excel,html等所有格式的方法,直接調用便可jsp
public class ReportExporter {
/**
* 獲取打印報表
*/
public static void exportReport(HttpServletRequest request, HttpServletResponse response, String reportId,
String exportMode, Map parameterMap, List dataList, String downloadFileName) throws Exception {
Connection connection = null;
try {
if (dataList == null) {
connection = SqlHelper.getConnection();
}
ServletContext servletContext = request.getSession().getServletContext();
File jasperFile = new File(servletContext.getRealPath("/report/jasper/" + reportId + ".jasper"));
if (!jasperFile.exists())
throw new IOException("Report file can't be found");
if (parameterMap == null)
parameterMap = new HashMap();
//ireport3.0用這個
// JasperReport jasperReport = (JasperReport)JRLoader.loadObject(jasperFile.getPath());
JasperReport jasperReport = (JasperReport) JRLoader.loadObject(jasperFile);
JasperPrint jasperPrint = null;
if (dataList == null) {
jasperPrint = JasperFillManager.fillReport(jasperReport, parameterMap, connection);
} else {
JRDataSource source = new JRBeanCollectionDataSource(dataList);
jasperPrint = JasperFillManager.fillReport(jasperReport, parameterMap, source);
}
if (request.getHeader("User-Agent").toLowerCase().indexOf("firefox") > 0)
downloadFileName = new String(downloadFileName.getBytes("UTF-8"), "ISO8859-1");// firefox瀏覽器
else if (request.getHeader("User-Agent").toUpperCase().indexOf("MSIE") > 0)
downloadFileName = new String(downloadFileName.getBytes("gb2312"), "ISO8859-1");// IE瀏覽器
if (ReportExportMode.EXP_PDF_MODE.equalsIgnoreCase(exportMode)) {
exportPdf(response, jasperPrint, downloadFileName);
} else if (ReportExportMode.EXP_EXCEL_MODE.equalsIgnoreCase(exportMode)) {
exportExcel(response, jasperPrint, downloadFileName);
} else if ("word".equals(exportMode)) {
exportWord(response, jasperPrint, downloadFileName);
} else if ("rtf".equals(exportMode)) {
exportRTF(response, jasperPrint, downloadFileName);
} else if ("html".equals(exportMode)) {
exportHtml(response, jasperPrint, downloadFileName);
}
} finally {
if (dataList == null && connection != null)
try {
connection.close();
} catch (SQLException e) {
}
}
}
/**
* pdf導出
*/
private static void exportPdf(HttpServletResponse response, JasperPrint jasperPrint, String downloadFileName)
throws JRException, IOException {
ServletOutputStream ouputStream = response.getOutputStream();
try {
JRPdfExporter exporter = new JRPdfExporter();
exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);
exporter.setParameter(JRExporterParameter.OUTPUT_STREAM, ouputStream);
response.setContentType("application/pdf;charset=utf-8");
response.setHeader("Content-Disposition", "attachment;filename=" + downloadFileName + ".pdf");
exporter.exportReport();
ouputStream.flush();
} finally {
try {
ouputStream.close();
} catch (Exception e) {
}
}
}
/**
* excel導出
*/
private static void exportExcel(HttpServletResponse response, JasperPrint jasperPrint, String downloadFileName)
throws JRException, IOException {
ServletOutputStream ouputStream = response.getOutputStream();
try {
JRXlsExporter exporter = new JRXlsExporter();
exporter.setParameter(JRXlsExporterParameter.JASPER_PRINT, jasperPrint);
exporter.setParameter(JRXlsExporterParameter.OUTPUT_STREAM, ouputStream);
response.setContentType("application/vnd_ms-excel;charset=utf-8");
response.setHeader("Content-Disposition", "attachment;filename=" + downloadFileName + ".xls");
exporter.exportReport();
ouputStream.flush();
} finally {
try {
ouputStream.close();
} catch (Exception e) {
}
}
}
/**
* 導出word
*/
private static void exportWord(HttpServletResponse response, JasperPrint jasperPrint, String downloadFileName)
throws JRException, IOException {
ServletOutputStream ouputStream = response.getOutputStream();
try {
JRExporter exporter = new JRRtfExporter();
exporter.setParameter(JRXlsExporterParameter.JASPER_PRINT, jasperPrint);
exporter.setParameter(JRXlsExporterParameter.OUTPUT_STREAM, ouputStream);
response.setContentType("application/msword;charset=utf-8");
response.setHeader("Content-Disposition", "attachment;filename=" + downloadFileName + ".doc");
exporter.exportReport();
ouputStream.flush();
} finally {
try {
ouputStream.close();
} catch (Exception e) {
}
}
}
/**
* 導出RTF
*/
private static void exportRTF(HttpServletResponse response, JasperPrint jasperPrint, String downloadFileName)
throws JRException, IOException {
ServletOutputStream ouputStream = response.getOutputStream();
try {
JRExporter exporter = new JRRtfExporter();
exporter.setParameter(JRXlsExporterParameter.JASPER_PRINT, jasperPrint);
exporter.setParameter(JRXlsExporterParameter.OUTPUT_STREAM, ouputStream);
response.setContentType("application/rtf;charset=utf-8");
response.setHeader("Content-Disposition", "attachment;filename=" + downloadFileName + ".rtf");
exporter.exportReport();
ouputStream.flush();
} finally {
try {
ouputStream.close();
} catch (Exception e) {
}
}
}
/**
* 導出html
*/
private static void exportHtml(HttpServletResponse response, JasperPrint jasperPrint, String downloadFileName)
throws JRException, IOException {
ServletOutputStream ouputStream = response.getOutputStream();
try {
JRHtmlExporter exporter = new JRHtmlExporter();
exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);
exporter.setParameter(JRExporterParameter.OUTPUT_STREAM, ouputStream);
exporter.setParameter(JRExporterParameter.CHARACTER_ENCODING, "UTF-8");
exporter.setParameter(JRHtmlExporterParameter.IS_USING_IMAGES_TO_ALIGN, Boolean.FALSE);
response.setContentType("text/html;charset=utf-8");
exporter.exportReport();
ouputStream.flush();
} finally {
try {
ouputStream.close();
} catch (Exception e) {
}
}
}
}
複製代碼
ReportExportMode 類
public class ReportExportMode {
public static String EXP_PDF_MODE="PDF";
public static String EXP_EXCEL_MODE="EXCEL";
public static boolean isPDF(String mode){
return EXP_PDF_MODE.equals(mode);
}
public static boolean isEXCEL(String mode){
return EXP_EXCEL_MODE.equals(mode);
}
}
複製代碼
點擊 PDF 導出 和 EXCEL 導出
pdf 導出
excel導出