Poi實現Excel匯出工具類封裝
工具類程式碼PoiExcelExport如下:
package com.myssm.util.poi; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.lang.reflect.Method; import java.net.URLEncoder; import java.text.DecimalFormat; import java.util.List; import javax.servlet.http.HttpServletResponse; import org.apache.poi.hssf.usermodel.HSSFCellStyle; import org.apache.poi.hssf.usermodel.HSSFFont; import org.apache.poi.hssf.usermodel.HSSFPalette; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.util.CellRangeAddress; public class PoiExcelExport { HttpServletResponse response; // 檔名 private String fileName ; //檔案儲存路徑 private String fileDir; //sheet名 private String sheetName; //表頭字型 private String titleFontType = "Arial Unicode MS"; //表頭背景色 private String titleBackColor = "C1FBEE"; //表頭字號 private short titleFontSize = 12; //新增自動篩選的列 如 A:M private String address = ""; //正文字型 private String contentFontType = "Arial Unicode MS"; //正文字號 private short contentFontSize = 12; //Float型別資料小數位 private String floatDecimal = ".00"; //Double型別資料小數位 private String doubleDecimal = ".00"; //設定列的公式 private String colFormula[] = null; DecimalFormat floatDecimalFormat=new DecimalFormat(floatDecimal); DecimalFormat doubleDecimalFormat=new DecimalFormat(doubleDecimal); private HSSFWorkbook workbook = null; public PoiExcelExport(String fileDir,String sheetName){ this.fileDir = fileDir; this.sheetName = sheetName; workbook = new HSSFWorkbook(); } public PoiExcelExport(HttpServletResponse response,String fileName,String sheetName){ this.response = response; this.sheetName = sheetName; workbook = new HSSFWorkbook(); } /** * 設定表頭字型. * @param titleFontType */ public void setTitleFontType(String titleFontType) { this.titleFontType = titleFontType; } /** * 設定表頭背景色. * @param titleBackColor 十六進位制 */ public void setTitleBackColor(String titleBackColor) { this.titleBackColor = titleBackColor; } /** * 設定表頭字型大小. * @param titleFontSize */ public void setTitleFontSize(short titleFontSize) { this.titleFontSize = titleFontSize; } /** * 設定表頭自動篩選欄位,如A:AC. * @param address */ public void setAddress(String address) { this.address = address; } /** * 設定正文字型. * @param contentFontType */ public void setContentFontType(String contentFontType) { this.contentFontType = contentFontType; } /** * 設定正文字號. * @param contentFontSize */ public void setContentFontSize(short contentFontSize) { this.contentFontSize = contentFontSize; } /** * 設定float型別資料小數位 預設.00 * @param doubleDecimal 如 ".00" */ public void setDoubleDecimal(String doubleDecimal) { this.doubleDecimal = doubleDecimal; } /** * 設定doubel型別資料小數位 預設.00 * @param floatDecimalFormat 如 ".00 */ public void setFloatDecimalFormat(DecimalFormat floatDecimalFormat) { this.floatDecimalFormat = floatDecimalFormat; } /** * 設定列的公式 * @param colFormula 儲存i-1列的公式 涉及到的行號使用@替換 如
[email protected][email protected] */ public void setColFormula(String[] colFormula) { this.colFormula = colFormula; } /** * 寫excel. * @param titleColumn 對應bean的屬性名 * @param titleName excel要匯出的表名 * @param titleSize 列寬 * @param dataList 資料 */ public void wirteExcel(String titleColumn[],String titleName[],int titleSize[],List<?> dataList){ //新增Worksheet(不新增sheet時生成的xls檔案開啟時會報錯) Sheet sheet = workbook.createSheet(this.sheetName); //新建檔案 OutputStream out = null; try { if(fileDir!=null){ //有檔案路徑 out = new FileOutputStream(fileDir); }else{ //否則,直接寫到輸出流中 out = response.getOutputStream(); fileName = fileName+".xls"; response.setContentType("application/x-msdownload"); response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode(fileName, "UTF-8")); } //寫入excel的表頭 Row titleNameRow = workbook.getSheet(sheetName).createRow(0); //設定樣式 HSSFCellStyle titleStyle = workbook.createCellStyle(); titleStyle = (HSSFCellStyle) setFontAndBorder(titleStyle, titleFontType, (short) titleFontSize); titleStyle = (HSSFCellStyle) setColor(titleStyle, titleBackColor, (short)10); for(int i = 0;i < titleName.length;i++){ sheet.setColumnWidth(i, titleSize[i]*256); //設定寬度 Cell cell = titleNameRow.createCell(i); cell.setCellStyle(titleStyle); cell.setCellValue(titleName[i].toString()); } //為表頭新增自動篩選 if(!"".equals(address)){ CellRangeAddress c = (CellRangeAddress) CellRangeAddress.valueOf(address); sheet.setAutoFilter(c); } //通過反射獲取資料並寫入到excel中 if(dataList!=null&&dataList.size()>0){ //設定樣式 HSSFCellStyle dataStyle = workbook.createCellStyle(); titleStyle = (HSSFCellStyle) setFontAndBorder(titleStyle, contentFontType, (short) contentFontSize); if(titleColumn.length>0){ for(int rowIndex = 1;rowIndex<=dataList.size();rowIndex++){ Object obj = dataList.get(rowIndex-1); //獲得該物件 Class clsss = obj.getClass(); //獲得該對物件的class例項 Row dataRow = workbook.getSheet(sheetName).createRow(rowIndex); for(int columnIndex = 0;columnIndex<titleColumn.length;columnIndex++){ String title = titleColumn[columnIndex].toString().trim(); if(!"".equals(title)){ //欄位不為空 //使首字母大寫 String UTitle = Character.toUpperCase(title.charAt(0))+ title.substring(1, title.length()); // 使其首字母大寫; String methodName = "get"+UTitle; // 設定要執行的方法 Method method = clsss.getDeclaredMethod(methodName); //獲取返回型別 String returnType = method.getReturnType().getName(); String data = method.invoke(obj)==null?"":method.invoke(obj).toString(); Cell cell = dataRow.createCell(columnIndex); if(data!=null&&!"".equals(data)){ if("int".equals(returnType)){ cell.setCellValue(Integer.parseInt(data)); }else if("long".equals(returnType)){ cell.setCellValue(Long.parseLong(data)); }else if("float".equals(returnType)){ cell.setCellValue(floatDecimalFormat.format(Float.parseFloat(data))); }else if("double".equals(returnType)){ cell.setCellValue(doubleDecimalFormat.format(Double.parseDouble(data))); }else{ cell.setCellValue(data); } } }else{ //欄位為空 檢查該列是否是公式 if(colFormula!=null){ String sixBuf = colFormula[columnIndex].replace("@", (rowIndex+1)+""); Cell cell = dataRow.createCell(columnIndex); cell.setCellFormula(sixBuf.toString()); } } } } } } workbook.write(out); } catch (Exception e) { e.printStackTrace(); } finally { try { out.close(); } catch (IOException e) { e.printStackTrace(); } } } /** * 將16進位制的顏色程式碼寫入樣式中來設定顏色 * @param style 保證style統一 * @param color 顏色:66FFDD * @param index 索引 8-64 使用時不可重複 * @return */ public CellStyle setColor(CellStyle style,String color,short index){ if(color!=""&&color!=null){ //轉為RGB碼 int r = Integer.parseInt((color.substring(0,2)),16); //轉為16進位制 int g = Integer.parseInt((color.substring(2,4)),16); int b = Integer.parseInt((color.substring(4,6)),16); //自定義cell顏色 HSSFPalette palette = workbook.getCustomPalette(); palette.setColorAtIndex((short)index, (byte) r, (byte) g, (byte) b); style.setFillPattern(CellStyle.SOLID_FOREGROUND); style.setFillForegroundColor(index); } return style; } /** * 設定字型並加外邊框 * @param style 樣式 * @param style 字型名 * @param style 大小 * @return */ public CellStyle setFontAndBorder(CellStyle style,String fontName,short size){ HSSFFont font = workbook.createFont(); font.setFontHeightInPoints(size); font.setFontName(fontName); font.setBold(true); style.setFont(font); style.setBorderBottom(CellStyle.BORDER_THIN); //下邊框 style.setBorderLeft(CellStyle.BORDER_THIN);//左邊框 style.setBorderTop(CellStyle.BORDER_THIN);//上邊框 style.setBorderRight(CellStyle.BORDER_THIN);//右邊框 return style; } /** * 刪除檔案 * @param fileDir * @return */ public boolean deleteExcel(){ boolean flag = false; File file = new File(this.fileDir); // 判斷目錄或檔案是否存在 if (!file.exists()) { // 不存在返回 false return flag; } else { // 判斷是否為檔案 if (file.isFile()) { // 為檔案時呼叫刪除檔案方法 file.delete(); flag = true; } } return flag; } /** * 刪除檔案 * @param fileDir * @return */ public boolean deleteExcel(String path){ boolean flag = false; File file = new File(path); // 判斷目錄或檔案是否存在 if (!file.exists()) { // 不存在返回 false return flag; } else { // 判斷是否為檔案 if (file.isFile()) { // 為檔案時呼叫刪除檔案方法 file.delete(); flag = true; } } return flag; } }
測試如下:
實體bean:
測試類:package com.myssm.util.poi; public class Man { private String name; private int sex; private String idCard; private float salary; public Man(String name, int sex, String idCard, float salary) { super(); this.name = name; this.sex = sex; this.idCard = idCard; this.salary = salary; } public Man() { super(); } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getSex() { return sex; } public void setSex(int sex) { this.sex = sex; } public String getIdCard() { return idCard; } public void setIdCard(String idCard) { this.idCard = idCard; } public float getSalary() { return salary; } public void setSalary(float salary) { this.salary = salary; } }
package com.myssm.util.poi;
import java.util.ArrayList;
import java.util.List;
public class Test {
public static void main(String[] args) {
PoiExcelExport pee = new PoiExcelExport("E:/test.xls","sheet1");
//資料
List<Man> dataList = new ArrayList();
Man man1 = new Man("張三",20,"男",(float)10000.8);
Man man2 = new Man("李四",21,"男",(float)11000.8);
Man man3 = new Man("王五",22,"女",(float)1200.8);
Man man4 = new Man("趙六",23,"男",(float)13000.8);
Man man5 = new Man("田七",24,"男",(float)14000.8);
Man man6 = new Man();
man6.setName("老八");
dataList.add(man1);dataList.add(man2);dataList.add(man3);dataList.add(man4);dataList.add(man5);
dataList.add(man6);
//呼叫
String titleColumn[] = {"name","sex","idCard","salary",""};
String titleName[] = {"姓名","性別","身份證號","月薪","年薪"};
int titleSize[] = {13,13,13,13,13};
//其他設定 set方法可全不呼叫
String colFormula[] = new String[5];
colFormula[4] = "[email protected]*12"; //設定第5列的公式
pee.setColFormula(colFormula);
pee.setAddress("A:D"); //自動篩選
pee.wirteExcel(titleColumn, titleName, titleSize, dataList);
}
}
相關推薦
Poi實現Excel匯出工具類封裝
工具類程式碼PoiExcelExport如下:package com.myssm.util.poi; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; impo
#Java--POI之Excel匯出工具類(支援多個sheet頁同時匯出)
一、核心程式碼 package com.yx.yzh.utils; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.
JavaWEB--POI之EXCEL操作、優化、封裝詳解系列(三)--萬能POI之EXCEL匯出工具--PoiExportUtil入門篇
前面講完概述、原理以及helloworld,現在就講下怎樣的POI的EXCEL匯出工具可以適用於各種情況吧。後面再做個優化分頁的萬能POI之EXCEL匯出工具,本篇章先做個簡單的萬能POI之EXCEL匯出工具(博主已經抽象成庫,請於文末前去使用)。 文章結
Java使用Apache的poi實現Excel匯出(日常總結)
一.導包org.apache.poi <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version&
POI解析Excel檔案工具類
/** * 讀取excel資料 */ public static List<Map<String, Object>> exportListFromExcel(File file, int sheetNum) throws IOExcept
Springboot/SpringMVC+POI 實現Excel匯出功能(點選下載方式實現)
@RequestMapping("/download") public void downstudents(HttpServletRequest request, HttpServletResponse response,@RequestParam String startTime, @Reques
java poi匯入Excel通用工具類
問題引入和分析 提示:如果不想看羅嗦的文章,可以直接到最後點選原始碼下載執行即可 最近在做一個匯入Excel的功能,在做之前在百度上面查詢“java通用匯入Excel工具類”,沒有查到,大多數都是java通用匯出Excel。後來仔細想想,匯出可
java excel匯出工具類
使用的是apache poi與註解類實現:maven:<dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifact
poi操作excel的工具類
package com.paic.commcc.util; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.i
poi 實現Excel匯出到本地
前提是匯入POI相關jar包 1.html <button class="btn-search" onclick="exploreExcel()">匯出報表</button>2.js function exploreExcel () { var
基於hutool和POI的excel匯入工具類
excel匯入也可以很簡單,利用POI進行匯入,以及強大的hutool工具類,再加上對業務的理解,就可以封裝成一個超級好用的業務類了。 maven依賴 <!-- Hutool超級工具類 http://hutool.mydoc.i
資料庫配置excel匯出模板,poi匯出工具類實現過程
1.配置模板id,檔名字尾,本地儲存位置 2.配置模板表頭,資料位於表格的列號,對應實體的欄位,型別 3.儲存匯出的記錄,參考頁面欄位設計 4.後端呼叫部分設計參考 箭頭標明泛型匯出實體類T,匯出工具類例項化,執行緒排程 5.工具類主要設計 表頭資料查詢並寫入表頭 6.資料庫查詢
一個基於POI的通用excel匯入匯出工具類的簡單實現及使用方法
前言: 最近PM來了一個需求,簡單來說就是在錄入資料時一條一條插入到系統顯得非常麻煩,讓我實現一個直接通過excel匯入的方法一次性錄入所有資料。網上關於excel匯入匯出的例子很多,但大多相互借鑑。經過思考,認為一百個客戶在錄入excel的時候,就會有一百個格式版本,所以在實現這個功能之前,所以要統一exc
JAVA語言工具類封裝-基於poi的excel匯出功能
http://blog.csdn.net/caisini_vc/article/details/52387842 excel匯出基本上是必備的功能,如果條目超過65535 是csv,否則xls。 一句話使用: OrderInfoExcelBuilder.g
poi的使用匯入Excel表格的工具類封裝到JavaBean物件之中
經過幾天的不眠不夜的奮戰(哈哈,開個玩笑),咳咳正經點,這幾天自己封裝了一個Excel表格的匯入(本人是菜鳥所以是幾天,經過大量測試,和自己的需求,如果有其它的表格形式需要自己改寫),我在這裡做一個筆記,僅供自己以後忘了,沒有別的意圖。偶對了,是用泛型+反射進行封裝的、下面活不多說上程式碼。 1
Excel匯入匯出工具類 POI
/** * Copyright (C), 2015-2018, XXX有限公司 * FileName: ExcelUtils * Author: luohui * Date: 2018/9/12 15:31 * Description: Excel工具類
使用POI做的一個生成Excel的工具類。包含了匯出Excel和解析Excel方法
PoiExcelUtils.java /** * */ package com.common.office; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStrea
POI匯出工具類(反射實現)
POI匯出工具類 將前段時間工作中利用POI實現Excel匯出的功能程式碼在此做以下總結: 1.匯出工具類 import java.io.BufferedInputStream; import java.io.BufferedOutputStream; impo
Apache POI實現Excel檔案匯出
文章轉載地址: https://blog.csdn.net/qq_17214237/article/details/78345246 最近開發excel匯入匯出功能,使用的是Apache的POI技術 POI提供了很多對Microsoft Office的功能,本文僅僅講解POI的Excel
Spring使用POI實現Excel匯入匯出
Apache POI 是建立和維護操作各種符合Office Open XML(OOXML)標準和微軟的OLE 2複合文件格式(OLE2)的Java API。用它可以使用Java讀取和建立,修改MS Excel檔案.而且,還可以使用Java讀取和建立MS Word和MSPowerPoint檔案。Ap