jsp利用POI產生Excel並在頁面中匯出的樣本_JSP編程

來源:互聯網
上載者:User

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檔案下載或儲存了,這在一些資訊系統中相當有用。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.