`

Excel報表的導出實現

阅读更多
java 代码
  1. package Excel;   
  2. import java.io.*;   
  3. import java.lang.*;   
  4. import org.apache.poi.hssf.util.*;   
  5. import org.apache.poi.hssf.usermodel.*;   
  6. import org.apache.poi.poifs.filesystem.POIFSFileSystem;   
  7. import java.util.Enumeration;   
  8. import java.util.Vector;   
  9. public class Test   
  10. {   
  11.     HSSFSheet sheet;   
  12.     public Test() {}           
  13. public void write(String filename,String[][] conent,String path)   
  14. {   
  15.     try  
  16.         {   
  17.             POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream(path + "\\Test.xls"));   
  18.             HSSFWorkbook wb = new HSSFWorkbook(fs);   
  19.             sheet = wb.getSheetAt(0);   
  20.             HSSFRow row;   
  21.             HSSFCell cell;   
  22.             FileOutputStream fileOut = new FileOutputStream(path+"\\"+filename+".xls");  
  23.             BufferedOutputStream bf=new BufferedOutputStream(fileOut);  
  24.             row = sheet.getRow(2);  
  25.               
  26.             cell = row.getCell((short)0);  
  27.             HSSFCellStyle style1 = cell.getCellStyle();  
  28.               
  29.             cell = row.getCell((short)1);  
  30.             HSSFCellStyle style2 = cell.getCellStyle();  
  31.               
  32.             cell = row.getCell((short)2);  
  33.             HSSFCellStyle style3 = cell.getCellStyle();  
  34.               
  35.             cell = row.getCell((short)3);  
  36.             HSSFCellStyle style4 = cell.getCellStyle();    
  37.      
  38.     int i=0;  
  39.     while(i<conent.length)  
  40.     {                     
  41.           
  42.               
  43.             row = sheet.createRow((short)(2+i));  
  44.               
  45.             
  46.             cell = row.createCell((short)0);  
  47.             cell.setCellType(HSSFCell.CELL_TYPE_STRING);   
  48.             cell.setEncoding(HSSFCell.ENCODING_UTF_16);  
  49.             cell.setCellStyle(style1);  
  50.             cell.setCellValue(i+1);  
  51.       
  52.             cell = row.createCell((short)1);  
  53.             cell.setCellType(HSSFCell.CELL_TYPE_STRING);   
  54.             cell.setEncoding(HSSFCell.ENCODING_UTF_16);  
  55.             cell.setCellStyle(style2);  
  56.             cell.setCellValue(conent[i][0]);  
  57.               
  58.             cell = row.createCell((short)2);  
  59.             cell.setCellType(HSSFCell.CELL_TYPE_STRING);   
  60.             cell.setEncoding(HSSFCell.ENCODING_UTF_16);  
  61.             cell.setCellStyle(style3);  
  62.             cell.setCellValue(conent[i][1]);  
  63.               
  64.             cell = row.createCell((short)3);  
  65.             cell.setCellType(HSSFCell.CELL_TYPE_STRING);   
  66.             cell.setEncoding(HSSFCell.ENCODING_UTF_16);  
  67.             cell.setCellStyle(style4);  
  68.             cell.setCellValue(conent[i][2]);              
  69.             i++;  
  70.         }         
  71.                 wb.write(bf);  
  72.  
  73.     fileOut.close();  
  74.     bf.close();  
  75.     
  76.   }  
  77.     catch(Exception e)  
  78.         {  
  79.             System.out.println (">>>>>>>");   
  80.         }     
  81.    }   
  82.   
  83.     public HSSFRow  getRow(int irow)   
  84.     {   
  85.         HSSFRow row = sheet.getRow(irow);   
  86.   
  87.         if(row==null)   
  88.         {   
  89.             row = sheet.createRow((short)irow);//====>>   
  90.         }   
  91.         return row;   
  92.     }   
  93.        
  94.     public HSSFCell getCell(HSSFRow row, int icol)   
  95.     {   
  96.         HSSFCell cell = row.getCell((short)icol);   
  97.         if (cell == null)   
  98.         {   
  99.             cell = row.createCell((short)icol);   
  100.         }   
  101.         return cell;   
  102.     }   
  103.        
  104. }  

2、下載頁面
java 代码
  1. <%@ page contentType="application/x-msdownload;charset=Big5" %>   
  2. <%@ page import="java.io.*,java.util.*" %>   
  3. <html>   
  4. <head>   
  5. <title>下載頁面</title>   
  6. <meta http-equiv="Content-Type" content="application/x-msdownload;charset=big5">   
  7. </head>   
  8. <script LANGUAGE="JavaScript">    
  9. </script>   
  10. <body>   
  11. <jsp:useBean id="test_excel" class="Excel.Test" scope="page" />   
  12.     <%         
  13.         Vector vector = (Vector)session.getAttribute("test_vector");   
  14.         int size = vector.size();   
  15.         String[][] value = new String[size][16];   
  16.         for(int i = 0;i<vector.size();i++)   
  17.             value[i] = (String[])vector.get(i);   
  18.         String user_id = (String) session.getAttribute("se_userid");   
  19.         String RPath=request.getRealPath("")+"\\excel";    
  20.         String name=user_id + "_"+"test_count";   
  21.         test_excel.write(name,value,RPath);        
  22. ///////////////////////////////////////////////////////////////////   
  23.         String fname = name + ".xls";   
  24.         fname = new String(fname.getBytes("ISO-8859-1"));   
  25.         String path = "/excel/"+fname;   
  26.          int blockSize = 65000;   
  27.          File file = new File(application.getRealPath(path));   
  28.          if(file.exists())   
  29.          {   
  30.              FileInputStream fileIn = new FileInputStream(file);   
  31.              long fileLen = file.length();   
  32.              int readBytes = 0;   
  33.              int totalRead = 0;   
  34.              byte b[] = new byte[blockSize];   
  35.              response.reset();   
  36.              response.setContentType("application/x-msdownload");   
  37.              response.setContentLength((int)fileLen);   
  38.   
  39.              response.setHeader("Content-Disposition","attachment;filename=\""+fname+"\"");   
  40.              OutputStream out2=response.getOutputStream();   
  41.              try  
  42.              {   
  43.                  while((long)totalRead < fileLen)    
  44.                  {   
  45.                      readBytes = fileIn.read(b, 0, blockSize);   
  46.                      totalRead += readBytes;   
  47.                      out2.write(b, 0, readBytes);   
  48.                  }   
  49.                  out2.close();   
  50.              }   
  51.              catch(Exception e)   
  52.              {   
  53.              }   
  54.              finally  
  55.              {   
  56.                  out2.close();   
  57.                  fileIn.close();   
  58.                  file.delete();    
  59.              }   
  60.         }   
  61.         vector.clear();   
  62.         session.setAttribute("test_vector",vector);   
  63.         %>   
  64. </body>   
  65. </html>   
3、測試下載頁面
java 代码
  1. <%@ page import="java.util.*"%>   
  2. <%@ page contentType="text/html;charset=big5"%>   
  3. <html>   
  4. <head>   
  5. <title>測試頁面</title>   
  6. </head>   
  7. <body>   
  8.     <%   
  9.      Vector  vector = new Vector();   
  10.         String temp[] = new String[10];   
  11.         int j=0;   
  12.     while(j<100)   
  13.     {   
  14.         for(int i=0;i<10;i++)   
  15.         {      
  16.             temp[i]="test ";   
  17.         }   
  18.         j++;   
  19.         vector.add(temp);   
  20.     }   
  21.   
  22.         session.setAttribute("test_vector",vector);   
  23.   %>   
  24.     <a href="test_download.jsp">生成報表</a>    
  25. </body>   
  26. </html>  
分享到:
评论
1 楼 jeans 2006-12-26  
while(i<conent.length)

相关推荐

Global site tag (gtag.js) - Google Analytics