poi excel匯出 案例

2021-10-10 15:26:59 字數 882 閱讀 9372

response.setheader("connection", "close");

outputstream ouputstream = response.getoutputstream();

//查詢匯出是按照專案匯出還是輔助段匯出

list> list = bonusservice.details();

string headers = new string[8]; //開闢乙個長度為3的陣列

headers[0] = "年(yyyy)*";

headers[1] = "賬套編碼*";

headers[2] = "賬套名稱";

headers[3] = "成本中心編碼";

headers[4] = "成本中心名稱";

headers[5] = "專案編碼";

headers[6] = "專案名稱";

headers[7] = "上年額度獎金";

exportexcelutils eeu = new exportexcelutils();

xssfworkbook workbook = new xssfworkbook();

eeu.exportexcel(workbook, 0, "sheet", headers, list, ouputstream);

//多sheet頁模式

1, "sheet", headers, list, ouputstream);

//原理就是將所有的資料一起寫入,然後再關閉輸入流。

workbook.write(ouputstream);

ouputstream.close();

} catch (exception e)

}/**

poi Excel匯出樣式設定

hssfsheet sheet workbook.createsheet sheetname 建立sheet sheet.setverticallycenter true 下面樣式可作為匯出左右分欄的 模板 sheet.setcolumnwidth short 0,short 2600 設定列寬 s...

poi Excel 匯出工具類

public class myexcelutil if filename null listlistheader new arraylist 存放物件所有屬性 利用反射得到集合物件obj的所有屬性 包括父類和本類 公共和私有,所有屬性 class c list.get 0 getclass fiel...

poi excel檔案的匯入

使用poi來實現excel檔案的匯入匯出。使用struts2來做處理。首先看jsp頁面 index.jsp page language j a import j a.util.pageencoding utf 8 taglib uri struts tags prefix s doctype htm...