java中匯出Excel有兩個組件可以使用,一個是jxl,一個是POI,我這裡用的是POI。匯出是可以在伺服器上組建檔案,然後下載,也可以利用輸出資料流直接在網頁 中彈出對話方塊提示使用者儲存或下載。組建檔案的方式會導致伺服器中存在著垃圾檔案,實現方式不太優雅,所以這裡我採用的是後面直接通過輸出資料流的方式。
1、修改WEB伺服器的CONF/web.xml,添加 Xml代碼
<mime-mapping> <extension>xls</extension> <mime-type>application/vnd.ms-excel</mime-type> </mime-mapping>
如果不添加這個,那麼在網頁中下載的時候就變成了JSP檔案
2、download.jsp檔案
<%@ page contentType="application/vnd.ms-excel" language="java" import="java.util.*,com.shangyu.action.WriteExcel" pageEncoding="GBK"%><% response.setHeader("Content-Disposition","attachment;filename=test123.xls");//指定下載的檔案名稱 response.setContentType("application/vnd.ms-excel"); WriteExcel we=new WriteExcel(); we.getExcel("111.xls",response.getOutputStream()); %>
注意不要有html代碼,並且除了<% %> 中間的代碼,其它的地方不要有空格。否則在匯出檔案的時候會在後台出現異常,雖然不影響程式的使用,到時令人看起來 不太舒服
3、WriteExcel.java 產生Excel的JavaBean,複雜的應用請查看API
package com.shangyu.action; import java.io.*; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.hssf.usermodel.HSSFSheet; import org.apache.poi.hssf.usermodel.HSSFRow; import org.apache.poi.hssf.usermodel.HSSFCell; public class WriteExcel { public void getExcel(String sheetName,OutputStream output) { HSSFWorkbook wb=new HSSFWorkbook(); HSSFSheet sheet1=wb.createSheet("sheet1"); HSSFRow row=sheet1.createRow((short)0); HSSFCell cell=row.createCell((short)0); cell.setCellValue(1); row.createCell((short)1).setCellValue(2); row.createCell((short)2).setCellValue(3); row.createCell((short)3).setCellValue("中文字元"); row=sheet1.createRow((short)1); cell=row.createCell((short)0); cell.setCellValue(1); row.createCell((short)1).setCellValue(2); row.createCell((short)2).setCellValue(3); row.createCell((short)3).setCellValue("中文字元"); //FileOutputStream fileout=new FileOutputStream("workbook.xls"); try { output.flush(); wb.write(output); output.close(); } catch (IOException e) { e.printStackTrace(); System.out.println( "Output is closed "); } } }
通過以上三步,應該可以直接產生Excel檔案下載或儲存了,這在一些資訊系統中相當有用。