Apache的POI常用api
目前常見讀寫Excel的工具類開源javaAPI有兩種方式,
一個是JXL(Java Excel API) 官網地址:http://jexcelapi.sourceforge.net/
一個是Apache的POI(Poor Obfuscation Implementation)官網地址:http://poi.apache.org/
POI支援微軟的OLE2格式檔案Office 2003及以下版本;同時支援微軟的OOXML(Office Open XML)標準,也就是Office 2007以上版本。JXL只能實現對Excel 2003以下版本的支援。
POI使用HSSF物件操作OLE2格式Excel,檔案字尾為.xls的;使用XSSF、SXSSF物件操作OOXML格式Excel,檔案字尾為.xlsx的。
對於OLE2版本的Excel,一個Sheet工作表它的行最多支援到65536行,列支援到256列;
對於OOXML版本的Excel,一個Sheet工作表它的行支援到1048576行,列支援到16384列。
核心API:
資料限制:
Excel2003 2007、2010
列: 255 16384
行: 65535 1048576
=================== 基礎 ===================
// 建立excel(工作簿) 使用介面的方式來建立
Workbook wb = new HSSFWorkbook();
新建工作簿:
HSSFWorkbook wb = new HSSFWorkbook();
開啟工作簿:
HSSFWorkbook wb = new HSSFWorkbook(new FileInputStream(xlsFile));
建立新的sheet物件:
HSSFSheet sheet = wb.createSheet("我的第一個工作簿");
選擇第一個工作簿:
HSSFSheet sheet = wb.getSheetAt(0);
設定工作簿的名稱:
wb.setSheetName(0,"我的第一個工作簿");
建立行物件:
HSSFRow nRow = null;
nRow = sheet.createRow(1); //第2行
指定列 建立單元格物件:
HSSFCell nCell = null;
指定列 建立單元格物件:
nCell.setCellValue("我是單元格");
// 獲取到樣式的物件
CellStyle style = wb.createCellStyle();
// 建立字型物件
Font font = wb.createFont();
// 設定字型大小
font.setFontHeightInPoints((short) 16);
// 設定字型的名稱
font.setFontName("楷體");
// 設定字型
style.setFont(font);
設定樣式 注意:樣式不能重複設定
nCell.setCellStyle(leftStyle(wb));
檔案下載方法1:
先在伺服器產生臨時檔案,再下載臨時檔案。
關閉儲存excel檔案
FileOutputStream fOut = new FileOutputStream(xlsFile); //建立xls檔案,無內容 0位元組
wb.write(fOut); //寫內容,xls檔案已經可以開啟
fOut.flush(); //重新整理緩衝區
fOut.close(); //關閉
檔案下載方法2:
//7.生成excel檔案
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); //生成流物件
wb.write(byteArrayOutputStream); //將excel寫入流
//工具類,封裝彈出下載框:
String outFile = "生產廠家通訊錄.xls";
DownloadBaseAction down = new DownloadBaseAction();
down.download(byteArrayOutputStream,response,outFile);
檔案下載方法3:(適用於struts2)
ServletActionContext.getResponse().setContentType("application/octet-stream");
String returnName = ServletActionContext.getResponse().encodeURL( new String("購銷合同.xls".getBytes(),"ISO-8859-1"));
ServletActionContext.getResponse().addHeader("Content-Disposition","attachment;filename=" + returnName);
wb.write(ServletActionContext.getResponse().getOutputStream());
檔案下載方法4:
//下載檔案
response.setContentType("application/octet-stream");
String returnName = response.encodeURL( new String("生產廠家通訊錄.xls".getBytes(),"ISO-8859-1"));
response.addHeader("Content-Disposition","attachment;filename=" + returnName);
wb.write(response.getOutputStream());
字型修飾:
//設定單元格樣式
private HSSFCellStyle leftStyle(HSSFWorkbook wb){
HSSFCellStyle curStyle = wb.createCellStyle();
HSSFFont curFont = wb.createFont(); //設定字型
//curFont.setFontName("Times New Roman"); //設定英文字型
curFont.setFontName("微軟雅黑"); //設定英文字型
curFont.setCharSet(HSSFFont.DEFAULT_CHARSET); //設定中文字型,那必須還要再對單元格進行編碼設定
curFont.setFontHeightInPoints((short)10); //字型大小
curFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD); //加粗
curStyle.setFont(curFont);
curStyle.setBorderTop(HSSFCellStyle.BORDER_THICK); //粗實線
curStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); //實線
curStyle.setBorderLeft(HSSFCellStyle.BORDER_MEDIUM); //比較粗實線
curStyle.setBorderRight(HSSFCellStyle.BORDER_THIN); //實線
curStyle.setWrapText(true); //換行
curStyle.setAlignment(HSSFCellStyle.ALIGN_RIGHT); //橫向具右對齊
curStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER); //單元格垂直居中
return curStyle;
}
=================== web環境 ===================
設定列印方向:預設縱向
PrintSetup ps = sheet.getPrintSetup();
ps.setLandscape(true); //橫向列印
自適應列寬:
//bug 對中文支援不好,列寬不夠寬
for(int i=0 ;i<titles.length;i++){
sheet.autoSizeColumn((short)i);
}
設定行高:
nRow.setHeightInPoints(18);
設定列寬:
sheet.setColumnWidth((short)colNo,(short)(256*8));
設定每列預設寬度:
sheet.setDefaultColumnWidth((short) 20);
設定標題:
將第一行作為標題,即每頁都列印此行 sheetN,startCol,stopCol,startRow,stopRow
wb.setRepeatingRowsAndColumns(0,1,8,1);
頁尾:
HSSFFooter footer = sheet.getFooter();
footer.setRight("第"+HSSFFooter.page()+"頁 共"+HSSFFooter.numPages()+"頁 "); //頁數
工具類-單元格自適應高度:
float height = pioUtil.getCellAutoHeight(extcproducts,12f);
nRow.setHeightInPoints(height); //(一行字+行之間的間隙)*行數
分頁:
// POI分頁符有BUG,必須在模板檔案中插入一個分頁符,然後再此處刪除預設的分頁符;最後在下面重新設定分頁符。
// sheet.setAutobreaks(false);
// int iRowBreaks[] = sheet.getRowBreaks();
// sheet.removeRowBreak(3);
// sheet.removeRowBreak(4);
// sheet.removeRowBreak(5);
// sheet.removeRowBreak(6);
sheet.setRowBreak(行數); //在第startRow行設定分頁符
==出貨表:
合併單元格:
//縱向合併單元格
Region region = null;
region = new Region(curRow-1,(short)(1),curRow-1+3,(short)1);
sheet.addMergedRegion(region);
//橫向合併單元格
CellRangeAddress
sheet.addMergedRegion(new CellRangeAddress(開始行,結束行,開始列,結束列));
// 橫向居中
style.setAlignment(CellStyle.ALIGN_CENTER);
// 縱向居中
style.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
檔案直接輸出:
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); //生成流物件
wb.write(byteArrayOutputStream); //將excel寫入流
HttpServletResponse response = ServletActionContext.getResponse();
//工具類,封裝彈出下載框:
DownloadBaseAction down = new DownloadBaseAction();
down.download(byteArrayOutputStream,outFile);
獲取模板:
int curRow = 0; //當前行
int colNo = 1; //當前列
//得到模板路徑
String rootPath = UtilFuns.getROOTPath();
String xlsFile = rootPath + "/make/xlsprint/tOUTPRODUCT.xls";
//新建臨時目錄,存放excel /root/web/tmpfile/yyyy-mm-dd/...
String filePath = "/web/tmpfile/" + UtilFuns.sysDate()+"/";
File tmpDir = new File(rootPath + filePath);
if(!tmpDir.exists()){
tmpDir.mkdirs(); //建立多級目錄
}
FileUtil fu = new FileUtil();
String sFile = fu.newFile(rootPath+filePath,"outproduct.xls"); //防止檔案併發訪問
String outFile = rootPath+filePath+sFile; //輸出檔案
==合同列印:
1、 分頁
sheet.setRowBreak(當前行); //設定分頁符
2、怎麼插入一個圖片
HSSFPatriarch patriarch = sheet.createDrawingPatriarch(); //add picture
pioUtil.setPicture(wb,patriarch,rootPath+"make/xlsprint/logo.jpg",curRow,2,curRow+4,2);
3、怎麼插入一條線
pioUtil.setLine(wb,8); //draw line
4、設定數值型別
nCell.setCellType(HSSFCell.CELL_TYPE_NUMERIC);
5、設定前導符
HSSFDataFormat format = wb.createDataFormat();
return format.getFormat("\"¥\"#,###,##0.00"); // 設定格式
6、設定公式
nCell.setCellType(HSSFCell.CELL_TYPE_FORMULA);
nCell.setCellFormula("F11*H11");
nCell.setCellFormula("F"+String.valueOf(curRow)+"*H"+String.valueOf(curRow));
nCell.setCellFormula("SUM(I"+String.valueOf(curRow-4)+":I"+String.valueOf(curRow-1)+")");
7、工具類:替換等量空格
fixSpaceStr(String str,int len)
8、業務要求:
1)同一個廠家的貨物才能列印到同一個頁面
List<ContractProduct> oList = oDao.find("from ContractProduct o where o.contract.id=‘"+contractId+"‘ order by o.factory.id,o.orderNo");
//廠家不同另起新頁列印,除去第一次的比較
if(oProduct.getFactory().getFactoryName().equals(oldFactory)){
}
2)列印可以選擇列印一款貨物,還是兩款貨物
if(contract.getPrintStyle().equals("2")){
}
9、資料和業務分離
//填寫每頁的內容,之後在迴圈每頁讀取列印
Map<String,String> pageMap = null;
List<Map> pageList = new ArrayList(); //列印頁
==報運列印:
wb.cloneSheet(0); //複製sheet0工作簿,名字會自動重新命名
1 package cn.itcast.export.util; 2 3 import java.io.ByteArrayOutputStream; 4 import java.io.File; 5 import java.io.FileInputStream; 6 import java.io.IOException; 7 import java.net.URLEncoder; 8 9 import javax.servlet.ServletOutputStream; 10 import javax.servlet.http.HttpServletResponse; 11 12 import org.apache.struts2.ServletActionContext; 13 14 import sun.misc.BASE64Encoder; 15 16 public class DownloadUtil { 17 18 /** 19 * @param filePath 要下載的檔案路徑 20 * @param returnName 返回的檔名 21 * @param response HttpServletResponse 22 * @param delFlag 是否刪除檔案 23 */ 24 protected void download(String filePath,String returnName,HttpServletResponse response,boolean delFlag){ 25 this.prototypeDownload(new File(filePath),returnName,delFlag); 26 } 27 28 29 /** 30 * @param file 要下載的檔案 31 * @param returnName 返回的檔名 32 * @param response HttpServletResponse 33 * @param delFlag 是否刪除檔案 34 */ 35 protected void download(File file,boolean delFlag){ 36 this.prototypeDownload(file,delFlag); 37 } 38 39 /** 40 * @param file 要下載的檔案 41 * @param returnName 返回的檔名 42 * @param response HttpServletResponse 43 * @param delFlag 是否刪除檔案 44 */ 45 public void prototypeDownload(File file,boolean delFlag){ 46 // 下載檔案 47 FileInputStream inputStream = null; 48 ServletOutputStream outputStream = null; 49 try { 50 if(!file.exists()) return; 51 response.reset(); 52 //設定響應型別 PDF檔案為"application/pdf",WORD檔案為:"application/msword", EXCEL檔案為:"application/vnd.ms-excel"。 53 response.setContentType("application/octet-stream;charset=utf-8"); 54 55 //設定響應的檔名稱,並轉換成中文編碼 56 //returnName = URLEncoder.encode(returnName,"UTF-8"); 57 returnName = response.encodeURL(new String(returnName.getBytes(),"iso8859-1")); //儲存的檔名,必須和頁面編碼一致,否則亂碼 58 59 //attachment作為附件下載;inline客戶端機器有安裝匹配程式,則直接開啟;注意改變配置,清除快取,否則可能不能看到效果 60 response.addHeader("Content-Disposition","attachment;filename="+returnName); 61 62 //將檔案讀入響應流 63 inputStream = new FileInputStream(file); 64 outputStream = response.getOutputStream(); 65 int length = 1024; 66 int readLength=0; 67 byte buf[] = new byte[1024]; 68 readLength = inputStream.read(buf,0,length); 69 while (readLength != -1) { 70 outputStream.write(buf,readLength); 71 readLength = inputStream.read(buf,length); 72 } 73 } catch (Exception e) { 74 e.printStackTrace(); 75 } finally { 76 try { 77 outputStream.flush(); 78 } catch (IOException e) { 79 e.printStackTrace(); 80 } 81 try { 82 outputStream.close(); 83 } catch (IOException e) { 84 e.printStackTrace(); 85 } 86 try { 87 inputStream.close(); 88 } catch (IOException e) { 89 e.printStackTrace(); 90 } 91 //刪除原檔案 92 93 if(delFlag) { 94 file.delete(); 95 } 96 } 97 } 98 99 /** 100 * by tony 2013-10-17 101 * @param byteArrayOutputStream 將檔案內容寫入ByteArrayOutputStream 102 * @param response HttpServletResponse 寫入response 103 * @param returnName 返回的檔名 104 */ 105 public void download(ByteArrayOutputStream byteArrayOutputStream,String returnName) throws IOException{ 106 response.setContentType("application/octet-stream;charset=utf-8"); 107 //returnName = response.encodeURL(new String(returnName.getBytes(),"iso8859-1")); //儲存的檔名,否則亂碼 108 String agent = ServletActionContext.getRequest().getHeader("user-agent");//客戶端瀏覽器版本 109 returnName = encodeDownloadFilename(returnName,agent ); 110 111 response.addHeader("Content-Disposition","attachment;filename=" + returnName); 112 response.setContentLength(byteArrayOutputStream.size()); 113 114 ServletOutputStream outputstream = response.getOutputStream(); //取得輸出流 115 byteArrayOutputStream.writeTo(outputstream); //寫到輸出流 116 byteArrayOutputStream.close(); //關閉 117 outputstream.flush(); //刷資料 118 } 119 120 /** 121 * 下載檔案時,針對不同瀏覽器,進行附件名的編碼 122 * @param filename 下載檔名 123 * @param agent 客戶端瀏覽器 124 * @return 編碼後的下載附件名 125 * @throws IOException 126 */ 127 public String encodeDownloadFilename(String filename,String agent) throws IOException{ 128 if(agent.contains("Firefox")){ // 火狐瀏覽器 129 filename = "=?UTF-8?B?"+new BASE64Encoder().encode(filename.getBytes("utf-8"))+"?="; 130 }else{ // IE及其他瀏覽器 131 filename = URLEncoder.encode(filename,"utf-8"); 132 } 133 return filename; 134 } 135 }poi下載