POI打印-----文件下載
目前常見讀寫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使用HFFS對象操作OLE2格式Excel,文件後綴為.xls的;使用XSSF、SXSSF對象操作OOXML格式Excel,文件後綴為.xlsx的。
對於OLE2版本的Excel,一個Sheet工作表它的行最多支持到65536行,列支持到256列;
對於OOXML版本的Excel,一個Sheet工作表它的行支持到1048576行,列支持到65536列。
核心API:
數據限制:
Excel2003 2007、2010
列: 255 16384
行: 65535 1048576
=================== 基礎 ===================
新建工作簿:
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 = nRow.createCell((short)(2)); //第3列
指定列 創建單元格對象:
nCell.setCellValue("我是單元格");
設置樣式 註意:樣式不能重復設置
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,0,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(開始行,結束行,開始列,結束列));
文件直接輸出:
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); //生成流對象
wb.write(byteArrayOutputStream); //將excel寫入流
HttpServletResponse response = ServletActionContext.getResponse();
//工具類,封裝彈出下載框:
DownloadBaseAction down = new DownloadBaseAction();
down.download(byteArrayOutputStream, response, 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, patriarch, curRow, 2, curRow, 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工作簿,名字會自動重命名
POI打印-----文件下載