Java之POI操作,封裝ExcelUtil實現Excel匯入匯出
最近老師佈置了一個任務,實現 Excel 和資料庫的匯入匯出。
這個問題起初看起來是不復雜,實現簡陋的匯入匯出比較容易。
但是,後來老師要求寫一個包裝類,讓其他同學能夠直接使用。
這就涉及到了泛型和反射的內容,其實也不復雜。
最終,在網上找到一段程式碼,寫得挺好的,然後一頓除錯和修改,就能直接拿來用了。
現在也分享給大家。
基本功能
* 1.實體屬性配置了註解就能匯出到excel中,每個屬性都對應一列.
* 2.列名稱可以通過註解配置.
* 3.匯出到哪一列可以通過註解配置.
* 4.滑鼠移動到該列時提示資訊可以通過註解配置.
* 5.用註解設定只能下拉選擇不能隨意填寫功能.
* 6.用註解設定是否只匯出標題而不匯出內容,這在匯出內容作為模板以供使用者填寫時比較實用.
效果圖
資料庫
Excel
呼叫方法
下面是通過 SpringMVC 操作,匯入匯出
1、匯出
- /**
- * 將user表匯出到Excel表
- * @return
- */
- @RequestMapping(value = "/exportExcel")
- @ResponseBody
- public String importExcel() {
- // 初始化資料
- List<User> userList = userService.listUser();
- List<UserVO> userVOList = new ArrayList<UserVO>();
- //將 userList 拷貝到 userVOList 中
- for(int i=0; i<userList.size(); i++) {
- UserVO userVO = new UserVO();
- User user = userList.get(i);
- BeanUtils.copyProperties(user, userVO);
- userVOList.add(userVO);
- }
- //將 userVoList 寫入到資料庫中
- FileOutputStream out = null;
- try {
- out = new FileOutputStream("/Users/liuyanzhao/Desktop/Test/demo.xls");
- } catch (FileNotFoundException e) {
- e.printStackTrace();
- }
- ExcelUtil<UserVO> util = new ExcelUtil<UserVO>(UserVO.class);// 建立工具類.
- util.exportExcel(userVOList, "使用者資訊", 65536, out);// 匯出
- System.out.println("----執行完畢----------");
- return "success";
- }
2、匯入
- @RequestMapping(value = "/importExcel")
- @ResponseBody
- public String importExcel() {
- FileInputStream fis = null;
- try {
- fis = new FileInputStream("/Users/liuyanzhao/Desktop/Test/demo2.xls");
- ExcelUtil<UserVO> util = new ExcelUtil<UserVO>(
- UserVO.class);
- // 建立excel工具類,返回Excel中的資料
- List<UserVO> userVOList = util.importExcel("使用者資訊", fis);// 匯入
- System.out.println(userVOList);
- //將userVOList 轉成 userList
- List<User> userList = new ArrayList<User>();
- for(int i = 0; i < userVOList.size(); i++) {
- User user = new User();
- UserVO userVO = userVOList.get(i);
- BeanUtils.copyProperties(userVO,user);
- userList.add(user);
- }
- //插入資料庫中
- userService.insertUserBatch(userList);
- } catch (FileNotFoundException e) {
- e.printStackTrace();
- }
- return "success";
- }
封裝實現
1、ExcelVOAttribute.java 自定義註解
- package com.change.units;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * @author 言曌
- * @date 2017/12/25 上午10:19
- */
- @Retention(RetentionPolicy.RUNTIME)
- @Target( { java.lang.annotation.ElementType.FIELD })
- public @interface ExcelVOAttribute {
- /**
- * 匯出到Excel中的名字.
- */
- public abstract String name();
- /**
- * 配置列的名稱,對應A,B,C,D....
- */
- public abstract String column();
- /**
- * 提示資訊
- */
- public abstract String prompt() default "";
- /**
- * 設定只能選擇不能輸入的列內容.
- */
- public abstract String[] combo() default {};
- /**
- * 是否匯出資料,應對需求:有時我們需要匯出一份模板,這是標題需要但內容需要使用者手工填寫.
- */
- public abstract boolean isExport() default true;
- }
2、ExcelUtil.java Excel操作封裝類
- package com.change.units;
- import java.io.IOException;
- import java.io.InputStream;
- import java.io.OutputStream;
- import java.lang.reflect.Field;
- import java.text.DecimalFormat;
- import java.text.SimpleDateFormat;
- import java.util.ArrayList;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import org.apache.poi.hssf.usermodel.*;
- import org.apache.poi.ss.util.CellRangeAddressList;
- /**
- * @author 言曌
- * @date 2017/12/24 下午9:08
- */
- /*
- * ExcelUtil工具類實現功能:
- * 匯出時傳入list<T>,即可實現匯出為一個excel,其中每個物件T為Excel中的一條記錄.
- * 匯入時讀取excel,得到的結果是一個list<T>.T是自己定義的物件.
- * 需要匯出的實體物件只需簡單配置註解就能實現靈活匯出,通過註解您可以方便實現下面功能:
- * 1.實體屬性配置了註解就能匯出到excel中,每個屬性都對應一列.
- * 2.列名稱可以通過註解配置.
- * 3.匯出到哪一列可以通過註解配置.
- * 4.滑鼠移動到該列時提示資訊可以通過註解配置.
- * 5.用註解設定只能下拉選擇不能隨意填寫功能.
- * 6.用註解設定是否只匯出標題而不匯出內容,這在匯出內容作為模板以供使用者填寫時比較實用.
- * 本工具類以後可能還會加功能,請關注我的部落格: http://blog.csdn.net/lk_blog
- */
- public class ExcelUtil<T> {
- Class<T> clazz;
- public ExcelUtil(Class<T> clazz) {
- this.clazz = clazz;
- }
- public List<T> importExcel(String sheetName, InputStream input) {
- List<T> list = new ArrayList<T>();
- try {
- HSSFWorkbook workbook = new HSSFWorkbook(input);
- HSSFSheet sheet = workbook.getSheet(sheetName);
- if (!sheetName.trim().equals("")) {
- sheet = workbook.getSheet(sheetName);// 如果指定sheet名,則取指定sheet中的內容.
- }
- if (sheet == null) {
- sheet = workbook.getSheetAt(0); // 如果傳入的sheet名不存在則預設指向第1個sheet.
- }
- int rows = sheet.getPhysicalNumberOfRows();
- if (rows > 0) {// 有資料時才處理
- Field[] allFields = clazz.getDeclaredFields();// 得到類的所有field.
- Map<Integer, Field> fieldsMap = new HashMap<Integer, Field>();// 定義一個map用於存放列的序號和field.
- for (Field field : allFields) {
- // 將有註解的field存放到map中.
- if (field.isAnnotationPresent(ExcelVOAttribute.class)) {
- ExcelVOAttribute attr = field
- .getAnnotation(ExcelVOAttribute.class);
- int col = getExcelCol(attr.column());// 獲得列號
- // System.out.println(col + "====" + field.getName());
- field.setAccessible(true);// 設定類的私有欄位屬性可訪問.
- fieldsMap.put(col, field);
- }
- }
- for (int i = 1; i < rows; i++) {// 從第2行開始取資料,預設第一行是表頭.
- HSSFRow row = sheet.getRow(i);
- int cellNum = row.getPhysicalNumberOfCells();
- T entity = null;
- for (int j = 0; j < cellNum; j++) {
- HSSFCell cell = row.getCell(j);
- if (cell == null) {
- continue;
- }
- String value = "";
- switch (cell.getCellType()) {
- case HSSFCell.CELL_TYPE_NUMERIC: // 數字
- //如果為時間格式的內容
- if (HSSFDateUtil.isCellDateFormatted(cell)) {
- //注:format格式 yyyy-MM-dd hh:mm:ss 中小時為12小時制,若要24小時制,則把小h變為H即可,yyyy-MM-dd HH:mm:ss
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
- value = sdf.format(HSSFDateUtil.getJavaDate(cell.
- getNumericCellValue())).toString();
- break;
- } else {
- value = new DecimalFormat("0").format(cell.getNumericCellValue());
- }
- break;
- case HSSFCell.CELL_TYPE_STRING: // 字串
- value = cell.getStringCellValue();
- break;
- case HSSFCell.CELL_TYPE_BOOLEAN: // Boolean
- value = cell.getBooleanCellValue() + "";
- break;
- case HSSFCell.CELL_TYPE_FORMULA: // 公式
- value = cell.getCellFormula() + "";
- break;
- case HSSFCell.CELL_TYPE_BLANK: // 空值
- value = "";
- break;
- case HSSFCell.CELL_TYPE_ERROR: // 故障
- value = "非法字元";
- break;
- default:
- value = "未知型別";
- break;
- }
- System.out.println(value);
- if (value.equals("")) {
- continue;
- }
- entity = (entity == null ? clazz.newInstance() : entity);// 如果不存在例項則新建.
- // System.out.println(cells[j].getContents());
- Field field = fieldsMap.get(j);// 從map中得到對應列的field.
- // 取得型別,並根據物件型別設定值.
- Class<?> fieldType = field.getType();
- if (String.class == fieldType) {
- field.set(entity, String.valueOf(value));
- } else if ((Integer.TYPE == fieldType)
- || (Integer.class == fieldType)) {
- field.set(entity, Integer.parseInt(value));
- } else if ((Long.TYPE == fieldType)
- || (Long.class == fieldType)) {
- field.set(entity, Long.valueOf(value));
- } else if ((Float.TYPE == fieldType)
- || (Float.class == fieldType)) {
- field.set(entity, Float.valueOf(value));
- } else if ((Short.TYPE == fieldType)
- || (Short.class == fieldType)) {
- field.set(entity, Short.valueOf(value));
- } else if ((Double.TYPE == fieldType)
- || (Double.class == fieldType)) {
- field.set(entity, Double.valueOf(value));
- } else if (Character.TYPE == fieldType) {
- if ((value != null) && (value.length() > 0)) {
- field.set(entity, Character
- .valueOf(value.charAt(0)));
- }
- }
- }
- if (entity != null) {
- list.add(entity);
- }
- }
- }
- } catch (IOException e) {
- e.printStackTrace();
- } catch (InstantiationException e) {
- e.printStackTrace();
- } catch (IllegalAccessException e) {
- e.printStackTrace();
- } catch (IllegalArgumentException e) {
- e.printStackTrace();
- }
- return list;
- }
- /**
- * 對list資料來源將其裡面的資料匯入到excel表單
- *
- * @param sheetName
- * 工作表的名稱
- * @param sheetSize
- * 每個sheet中資料的行數,此數值必須小於65536
- * @param output
- * java輸出流
- */
- public boolean exportExcel(List<T> list, String sheetName, int sheetSize,
- OutputStream output) {
- Field[] allFields = clazz.getDeclaredFields();// 得到所有定義欄位
- List<Field> fields = new ArrayList<Field>();
- // 得到所有field並存放到一個list中.
- for (Field field : allFields) {
- if (field.isAnnotationPresent(ExcelVOAttribute.class)) {
- fields.add(field);
- }
- }
- HSSFWorkbook workbook = new HSSFWorkbook();// 產生工作薄物件
- // excel2003中每個sheet中最多有65536行,為避免產生錯誤所以加這個邏輯.
- if (sheetSize > 65536 || sheetSize < 1) {
- sheetSize = 65536;
- }
- double sheetNo = Math.ceil(list.size() / sheetSize);// 取出一共有多少個sheet.
- for (int index = 0; index <= sheetNo; index++) {
- HSSFSheet sheet = workbook.createSheet();// 產生工作表物件
- if (sheetNo == 0) {
- workbook.setSheetName(index, sheetName);
- } else {
- workbook.setSheetName(index, sheetName + index);// 設定工作表的名稱.
- }
- HSSFRow row;
- HSSFCell cell;// 產生單元格
- row = sheet.createRow(0);// 產生一行
- // 寫入各個欄位的列頭名稱
- for (int i = 0; i < fields.size(); i++) {
- Field field = fields.get(i);
- ExcelVOAttribute attr = field
- .getAnnotation(ExcelVOAttribute.class);
- int col = getExcelCol(attr.column());// 獲得列號
- cell = row.createCell(col);// 建立列
- cell.setCellType(HSSFCell.CELL_TYPE_STRING);// 設定列中寫入內容為String型別
- cell.setCellValue(attr.name());// 寫入列名
- // 如果設定了提示資訊則滑鼠放上去提示.
- if (!attr.prompt().trim().equals("")) {
- setHSSFPrompt(sheet, "", attr.prompt(), 1, 100, col, col);// 這裡預設設了2-101列提示.
- }
- // 如果設定了combo屬性則本列只能選擇不能輸入
- if (attr.combo().length > 0) {
- setHSSFValidation(sheet, attr.combo(), 1, 100, col, col);// 這裡預設設了2-101列只能選擇不能輸入.
- }
- }
- int startNo = index * sheetSize;
- int endNo = Math.min(startNo + sheetSize, list.size());
- // 寫入各條記錄,每條記錄對應excel表中的一行
- for (int i = startNo; i < endNo; i++) {
- row = sheet.createRow(i + 1 - startNo);
- T vo = (T) list.get(i); // 得到匯出物件.
- for (int j = 0; j < fields.size(); j++) {
- Field field = fields.get(j);// 獲得field.
- field.setAccessible(true);// 設定實體類私有屬性可訪問
- ExcelVOAttribute attr = field
- .getAnnotation(ExcelVOAttribute.class);
- try {
- // 根據ExcelVOAttribute中設定情況決定是否匯出,有些情況需要保持為空,希望使用者填寫這一列.
- if (attr.isExport()) {
- cell = row.createCell(getExcelCol(attr.column()));// 建立cell
- cell.setCellType(HSSFCell.CELL_TYPE_STRING);
- cell.setCellValue(field.get(vo) == null ? ""
- : String.valueOf(field.get(vo)));// 如果資料存在就填入,不存在填入空格.
- }
- } catch (IllegalArgumentException e) {
- e.printStackTrace();
- } catch (IllegalAccessException e) {
- e.printStackTrace();
- }
- }
- }
- }
- try {
- output.flush();
- workbook.write(output);
- output.close();
- return true;
- } catch (IOException e) {
- e.printStackTrace();
- System.out.println("Output is closed ");
- return false;
- }
- }
- /**
- * 將EXCEL中A,B,C,D,E列對映成0,1,2,3
- *
- * @param col
- */
- public static int getExcelCol(String col) {
- col = col.toUpperCase();
- // 從-1開始計算,字母重1開始運算。這種總數下來算數正好相同。
- int count = -1;
- char[] cs = col.toCharArray();
- for (int i = 0; i < cs.length; i++) {
- count += (cs[i] - 64) * Math.pow(26, cs.length - 1 - i);
- }
- return count;
- }
- /**
- * 設定單元格上提示
- *
- * @param sheet
- * 要設定的sheet.
- * @param promptTitle
- * 標題
- * @param promptContent
- * 內容
- * @param firstRow
- * 開始行
- * @param endRow
- * 結束行
- * @param firstCol
- * 開始列
- * @param endCol
- * 結束列
- * @return 設定好的sheet.
- */
- public static HSSFSheet setHSSFPrompt(HSSFSheet sheet, String promptTitle,
- String promptContent, int firstRow, int endRow, int firstCol,
- int endCol) {
- // 構造constraint物件
- DVConstraint constraint = DVConstraint
- .createCustomFormulaConstraint("DD1");
- // 四個引數分別是:起始行、終止行、起始列、終止列
- CellRangeAddressList regions = new CellRangeAddressList(firstRow,
- endRow, firstCol, endCol);
- // 資料有效性物件
- HSSFDataValidation data_validation_view = new HSSFDataValidation(
- regions, constraint);
- data_validation_view.createPromptBox(promptTitle, promptContent);
- sheet.addValidationData(data_validation_view);
- return sheet;
- }
- /**
- * 設定某些列的值只能輸入預製的資料,顯示下拉框.
- *
- * @param sheet
- * 要設定的sheet.
- * @param textlist
- * 下拉框顯示的內容
- * @param firstRow
- * 開始行
- * @param endRow
- * 結束行
- * @param firstCol
- * 開始列
- * @param endCol
- * 結束列
- * @return 設定好的sheet.
- */
- public static HSSFSheet setHSSFValidation(HSSFSheet sheet,
- String[] textlist, int firstRow, int endRow, int firstCol,
- int endCol) {
- // 載入下拉選單內容
- DVConstraint constraint = DVConstraint
- .createExplicitListConstraint(textlist);
- // 設定資料有效性載入在哪個單元格上,四個引數分別是:起始行、終止行、起始列、終止列
- CellRangeAddressList regions = new CellRangeAddressList(firstRow,
- endRow, firstCol, endCol);
- // 資料有效性物件
- HSSFDataValidation data_validation_list = new HSSFDataValidation(
- regions, constraint);
- sheet.addValidationData(data_validation_list);
- return sheet;
- }
- }
原文地址:http://blog.csdn.net/lk_blog/article/details/8007777
相關文章
- Java之POI操作Excel表-匯入匯出JavaExcel
- java 匯入匯出Excel工具類ExcelUtilJavaExcel
- 轉java操作excel匯入匯出JavaExcel
- java poi 匯出excel加密JavaExcel加密
- POI 匯出ExcelExcel
- poi 匯出Excel java程式碼ExcelJava
- Java POI匯入Excel檔案JavaExcel
- Excel匯入匯出-(poi)簡單封裝兩個類,拿來就可以用Excel封裝
- poi的excel匯出Excel
- SpringBoot實現Excel匯入匯出,好用到爆,POI可以扔掉了!Spring BootExcel
- Vue + Element 實現匯入匯出ExcelVueExcel
- Vue框架下實現匯入匯出Excel、匯出PDFVue框架Excel
- java實現Excel定製匯出(基於POI的工具類)JavaExcel
- Springboot操作Poi進行Excel匯入Spring BootExcel
- 前端實現Excel匯入和匯出功能前端Excel
- 不想用POI?幾行程式碼完成Excel匯出匯入行程Excel
- 使用工具類 使用poi匯入匯出excel報表Excel
- Laravel Maatwebsite-Excel 3.1 實現匯出匯入LaravelWebExcel
- Vue+Element 實現excel的匯入匯出VueExcel
- poi--excel --匯出例項Excel
- POI匯入Excel中文API文件ExcelAPI
- Java進行excel的匯入匯出操作JavaExcel
- spring boot + easypoi快速實現excel匯入匯出Spring BootExcel
- vue excel匯入匯出VueExcel
- springboot poi匯出excel表格Spring BootExcel
- POI匯出excel檔案加水印Excel
- 關於java中Excel的匯入匯出JavaExcel
- 基於NPOI封裝匯出Excel方法封裝Excel
- spring boot + jdk1.8實現Excel匯入、匯出Spring BootJDKExcel
- JS之實現Excel資料匯入JSExcel
- java使使用者EasyExcel匯入匯出excelJavaExcel
- Angular Excel 匯入與匯出AngularExcel
- Java匯出ExcelJavaExcel
- Excel匯入匯出神器(Java)ExcelJava
- POI的使用及匯出excel報表Excel
- 基於EPPlus和NPOI實現的Excel匯入匯出Excel
- 一文搞定POI,再也不怕excel匯入匯出了Excel
- java匯出Excel定義匯出模板JavaExcel