喝水也不忘挖井。感謝阿里巴巴項(xiàng)目團(tuán)隊(duì)提供easyexcel工具類、github地址。

文章列表

環(huán)境構(gòu)建Sheet文件讀取基本讀取指定讀取基本讀取指定讀取小于1000行的數(shù)據(jù)1000行以上導(dǎo)出excle無模型映射導(dǎo)出模型映射導(dǎo)出單頁導(dǎo)出多頁導(dǎo)出工具類測試類環(huán)境構(gòu)建

Easyexcel依賴于springboot(非必需)lombok(非必需)dependency

GroupIdcom.alibaba/groupId

ArtifactIdeasyexcel/artifactId

版本1.1.2-beat 1/版本

/dependency

Dependency

groupidorg . project lombok/groupid

artifactidlombok/artifact id

版本1.18.2/版本

/dependency

讀取Excel文件

少于1000行的數(shù)據(jù)

基本閱讀

讀取圖紙1中的所有數(shù)據(jù)

string file path='/home/chenmingjian/downloads/學(xué)生表?!皒lsx”;

Listobjectobjects=excelu(文件路徑);

指定讀取

如果您正在學(xué)習(xí)Spring Boot,建議您使用連載多年不斷更新的免費(fèi)教程。

下面是學(xué)生票。xlsx中工作表1、工作表2中的數(shù)據(jù)

獲取圖紙1標(biāo)題下的信息

string file path='/home/chenmingjian/downloads/學(xué)生表?!皒lsx”;

//第一個(gè)1表示圖紙1,第二個(gè)1表示從前幾行開始讀取數(shù)據(jù),行號最小值為0

圖紙圖紙=新圖紙(1,1);

Listobjectobjects=excelu(文件路徑、圖紙);

獲取有關(guān)圖紙2的所有信息

string file path='/home/chenmingjian/downloads/學(xué)生表?!皒lsx”;

圖紙圖紙=新圖紙(2,0);

Listobjectobjects=excelu(文件路徑、圖紙);

超過1000行的數(shù)據(jù)

基本閱讀

string file path='/home/chenmingjian/downloads/學(xué)生表。“xlsx”;

Listobjectobjects=excelu(文件路徑);

指定讀取

string file path='/home/chenmingjian/downloads/學(xué)生表。“xlsx”;

圖紙圖紙=新圖紙(1、2);

Listobjectobjects=excelu(文件路徑、圖紙);

Excle導(dǎo)出

匯出單一圖紙

無模型映射導(dǎo)出

string file path='/home/chenmingjian/downloads/測試?!皒lsx”;

列表lt

;List<Object>> data = new ArrayList<>(); da("111","222","333")); da("111","222","333")); da("111","222","333")); List<String> head = Arrays.asList("表頭1", "表頭2", "表頭3"); ExcelU(filePath,data,head);

結(jié)果

模型映射導(dǎo)出

1、定義好模型對象

package com.; import com.alibaba.excel.anno; import com.alibaba.excel.me; import lombok.Data; import lombok.EqualsAndHashCode; /** * @description: * @author: chenmingjian * @date: 19-4-3 14:44 */ @EqualsAndHashCode(callSuper = true) @Data public class TableHeaderExcelProperty extends BaseRowModel { /** * value: 表頭名稱 * index: 列的號, 0表示第一列 */ @ExcelProperty(value = "姓名", index = 0) private String name; @ExcelProperty(value = "年齡",index = 1) private int age; @ExcelProperty(value = "學(xué)校",index = 2) private String school; }

2、調(diào)用方法

String filePath = "/home/chenmingjian/Downloads/測試.xlsx"; ArrayList<TableHeaderExcelProperty> data = new ArrayList<>(); for(int i = 0; i < 4; i++){ TableHeaderExcelProperty tableHeaderExcelProperty = new TableHeaderExcelProperty(); ("cmj" + i); (22 + i); ("清華大學(xué)" + i); da(tableHeaderExcelProperty); } ExcelU(filePath,data);

多個(gè)Sheet導(dǎo)出

1、定義好模型對象

package com.; import com.alibaba.excel.anno; import com.alibaba.excel.me; import lombok.Data; import lombok.EqualsAndHashCode; /** * @description: * @author: chenmingjian * @date: 19-4-3 14:44 */ @EqualsAndHashCode(callSuper = true) @Data public class TableHeaderExcelProperty extends BaseRowModel { /** * value: 表頭名稱 * index: 列的號, 0表示第一列 */ @ExcelProperty(value = "姓名", index = 0) private String name; @ExcelProperty(value = "年齡",index = 1) private int age; @ExcelProperty(value = "學(xué)校",index = 2) private String school; }

2、調(diào)用方法

ArrayList<ExcelU; list1 = new ArrayList<>(); for(int j = 1; j < 4; j++){ ArrayList<TableHeaderExcelProperty> list = new ArrayList<>(); for(int i = 0; i < 4; i++){ TableHeaderExcelProperty tableHeaderExcelProperty = new TableHeaderExcelProperty(); ("cmj" + i); (22 + i); ("清華大學(xué)" + i); li(tableHeaderExcelProperty); } Sheet sheet = new Sheet(j, 0); ("sheet" + j); ExcelU multipleSheelPropety = new ExcelU(); mul(list); mul(sheet); li(multipleSheelPropety); } ExcelU("/home/chenmingjian/Download;,list1);

工具類

另外,如果您正在學(xué)習(xí)Spring Cloud,推薦一個(gè)連載多年還在繼續(xù)更新的免費(fèi)教程:

package com.; import com.alibaba.excel.EasyExcelFactory; import com.alibaba.excel.ExcelWriter; import com.alibaba.excel.con; import com.alibaba.excel.event.AnalysisEventListener; import com.alibaba.excel.me; import com.alibaba.excel.me; import lombok.Data; import lombok.Getter; import lombok.Setter; import lombok.ex; import org.; import org.; import java.io.*; import java.u; import java.u; import java.u; /** * @description: * @author: chenmingjian * @date: 19-3-18 16:16 */ @Slf4j public class ExcelUtil { private static Sheet initSheet; static { initSheet = new Sheet(1, 0); ini("sheet"); //設(shè)置自適應(yīng)寬度 ini); } /** * 讀取少于1000行數(shù)據(jù) * @param filePath 文件絕對路徑 * @return */ public static List<Object> readLessThan1000Row(String filePath){ return readLessThan1000RowBySheet(filePath,null); } /** * 讀小于1000行數(shù)據(jù), 帶樣式 * filePath 文件絕對路徑 * initSheet : * sheetNo: sheet頁碼,默認(rèn)為1 * headLineMun: 從第幾行開始讀取數(shù)據(jù),默認(rèn)為0, 表示從第一行開始讀取 * clazz: 返回?cái)?shù)據(jù)List<Object> 中Object的類名 */ public static List<Object> readLessThan1000RowBySheet(String filePath, Sheet sheet){ if(!S(filePath)){ return null; } sheet = sheet != null ? sheet : initSheet; InputStream fileStream = null; try { fileStream = new FileInputStream(filePath); return Ea(fileStream, sheet); } catch (FileNotFoundException e) { log.info("找不到文件或文件路徑錯(cuò)誤, 文件:{}", filePath); }finally { try { if(fileStream != null){ (); } } catch (IOException e) { log.info("excel文件讀取失敗, 失敗原因:{}", e); } } return null; } /** * 讀大于1000行數(shù)據(jù) * @param filePath 文件覺得路徑 * @return */ public static List<Object> readMoreThan1000Row(String filePath){ return readMoreThan1000RowBySheet(filePath,null); } /** * 讀大于1000行數(shù)據(jù), 帶樣式 * @param filePath 文件覺得路徑 * @return */ public static List<Object> readMoreThan1000RowBySheet(String filePath, Sheet sheet){ if(!S(filePath)){ return null; } sheet = sheet != null ? sheet : initSheet; InputStream fileStream = null; try { fileStream = new FileInputStream(filePath); ExcelListener excelListener = new ExcelListener(); EaBySax(fileStream, sheet, excelListener); return excelLi(); } catch (FileNotFoundException e) { log.error("找不到文件或文件路徑錯(cuò)誤, 文件:{}", filePath); }finally { try { if(fileStream != null){ (); } } catch (IOException e) { log.error("excel文件讀取失敗, 失敗原因:{}", e); } } return null; } /** * 生成excle * @param filePath 絕對路徑, 如:/home/chenmingjian/Download * @param data 數(shù)據(jù)源 * @param head 表頭 */ public static void writeBySimple(String filePath, List<List<Object>> data, List<String> head){ writeSimpleBySheet(filePath,data,head,null); } /** * 生成excle * @param filePath 絕對路徑, 如:/home/chenmingjian/Download * @param data 數(shù)據(jù)源 * @param sheet excle頁面樣式 * @param head 表頭 */ public static void writeSimpleBySheet(String filePath, List<List<Object>> data, List<String> head, Sheet sheet){ sheet = (sheet != null) ? sheet : initSheet; if(head != null){ List<List<String>> list = new ArrayList<>(); (h -> li(h))); (list); } OutputStream outputStream = null; ExcelWriter writer = null; try { outputStream = new FileOutputStream(filePath); writer = Ea(outputStream); wri(data,sheet); } catch (FileNotFoundException e) { log.error("找不到文件或文件路徑錯(cuò)誤, 文件:{}", filePath); }finally { try { if(writer != null){ wri(); } if(outputStream != null){ ou(); } } catch (IOException e) { log.error("excel文件導(dǎo)出失敗, 失敗原因:{}", e); } } } /** * 生成excle * @param filePath 絕對路徑, 如:/home/chenmingjian/Download * @param data 數(shù)據(jù)源 */ public static void writeWithTemplate(String filePath, List<? extends BaseRowModel> data){ writeWithTemplateAndSheet(filePath,data,null); } /** * 生成excle * @param filePath 絕對路徑, 如:/home/chenmingjian/Download * @param data 數(shù)據(jù)源 * @param sheet excle頁面樣式 */ public static void writeWithTemplateAndSheet(String filePath, List<? extends BaseRowModel> data, Sheet sheet){ i(data)){ return; } sheet = (sheet != null) ? sheet : initSheet; (0).getClass()); OutputStream outputStream = null; ExcelWriter writer = null; try { outputStream = new FileOutputStream(filePath); writer = Ea(outputStream); wri(data,sheet); } catch (FileNotFoundException e) { log.error("找不到文件或文件路徑錯(cuò)誤, 文件:{}", filePath); }finally { try { if(writer != null){ wri(); } if(outputStream != null){ ou(); } } catch (IOException e) { log.error("excel文件導(dǎo)出失敗, 失敗原因:{}", e); } } } /** * 生成多Sheet的excle * @param filePath 絕對路徑, 如:/home/chenmingjian/Download * @param multipleSheelPropetys */ public static void writeWithMultipleSheel(String filePath,List<MultipleSheelPropety> multipleSheelPropetys){ i(multipleSheelPropetys)){ return; } OutputStream outputStream = null; ExcelWriter writer = null; try { outputStream = new FileOutputStream(filePath); writer = Ea(outputStream); for (MultipleSheelPropety multipleSheelPropety : multipleSheelPropetys) { Sheet sheet = mul() != null ? mul() : initSheet; if(!Collec())){ ().get(0).getClass()); } wri(), sheet); } } catch (FileNotFoundException e) { log.error("找不到文件或文件路徑錯(cuò)誤, 文件:{}", filePath); }finally { try { if(writer != null){ wri(); } if(outputStream != null){ ou(); } } catch (IOException e) { log.error("excel文件導(dǎo)出失敗, 失敗原因:{}", e); } } } /*********************匿名內(nèi)部類開始,可以提取出去******************************/ @Data public static class MultipleSheelPropety{ private List<? extends BaseRowModel> data; private Sheet sheet; } /** * 解析監(jiān)聽器, * 每解析一行會回調(diào)invoke()方法。 * 整個(gè)excel解析結(jié)束會執(zhí)行doAfterAllAnalysed()方法 * * @author: chenmingjian * @date: 19-4-3 14:11 */ @Getter @Setter public static class ExcelListener extends AnalysisEventListener { private List<Object> datas = new ArrayList<>(); /** * 逐行解析 * object : 當(dāng)前行的數(shù)據(jù) */ @Override public void invoke(Object object, AnalysisContext context) { //當(dāng)前行 // con() if (object != null) { da(object); } } /** * 解析完所有數(shù)據(jù)后會調(diào)用該方法 */ @Override public void doAfterAllAnalysed(AnalysisContext context) { //解析結(jié)束銷毀不用的資源 } } /************************匿名內(nèi)部類結(jié)束,可以提取出去***************************/ }

測試類

package com.; import com.alibaba.excel.anno; import com.alibaba.excel.me; import com.alibaba.excel.me; import lombok.Data; import lombok.EqualsAndHashCode; import org.junit.runner.RunWith; import org.; import org.; import java.u; import java.u; import java.u; /** * @description: 測試類 * @author: chenmingjian * @date: 19-4-4 15:24 */ @SpringBootTest @RunWi) public class Test { /** * 讀取少于1000行的excle */ @org.junit.Test public void readLessThan1000Row(){ String filePath = "/home/chenmingjian/Downloads/測試.xlsx"; List<Object> objects = ExcelU(filePath); objec(System.out::println); } /** * 讀取少于1000行的excle,可以指定sheet和從幾行讀起 */ @org.junit.Test public void readLessThan1000RowBySheet(){ String filePath = "/home/chenmingjian/Downloads/測試.xlsx"; Sheet sheet = new Sheet(1, 1); List<Object> objects = ExcelUBySheet(filePath,sheet); objec(System.out::println); } /** * 讀取大于1000行的excle * 帶sheet參數(shù)的方法可參照測試方法readLessThan1000RowBySheet() */ @org.junit.Test public void readMoreThan1000Row(){ String filePath = "/home/chenmingjian/Downloads/測試.xlsx"; List<Object> objects = ExcelU(filePath); objec(System.out::println); } /** * 生成excle * 帶sheet參數(shù)的方法可參照測試方法readLessThan1000RowBySheet() */ @org.junit.Test public void writeBySimple(){ String filePath = "/home/chenmingjian/Downloads/測試.xlsx"; List<List<Object>> data = new ArrayList<>(); da("111","222","333")); da("111","222","333")); da("111","222","333")); List<String> head = Arrays.asList("表頭1", "表頭2", "表頭3"); ExcelU(filePath,data,head); } /** * 生成excle, 帶用模型 * 帶sheet參數(shù)的方法可參照測試方法readLessThan1000RowBySheet() */ @org.junit.Test public void writeWithTemplate(){ String filePath = "/home/chenmingjian/Downloads/測試.xlsx"; ArrayList<TableHeaderExcelProperty> data = new ArrayList<>(); for(int i = 0; i < 4; i++){ TableHeaderExcelProperty tableHeaderExcelProperty = new TableHeaderExcelProperty(); ("cmj" + i); (22 + i); ("清華大學(xué)" + i); da(tableHeaderExcelProperty); } ExcelU(filePath,data); } /** * 生成excle, 帶用模型,帶多個(gè)sheet */ @org.junit.Test public void writeWithMultipleSheel(){ ArrayList<ExcelU; list1 = new ArrayList<>(); for(int j = 1; j < 4; j++){ ArrayList<TableHeaderExcelProperty> list = new ArrayList<>(); for(int i = 0; i < 4; i++){ TableHeaderExcelProperty tableHeaderExcelProperty = new TableHeaderExcelProperty(); ("cmj" + i); (22 + i); ("清華大學(xué)" + i); li(tableHeaderExcelProperty); } Sheet sheet = new Sheet(j, 0); ("sheet" + j); ExcelU multipleSheelPropety = new ExcelU(); mul(list); mul(sheet); li(multipleSheelPropety); } ExcelU("/home/chenmingjian/Download;,list1); } /*******************匿名內(nèi)部類,實(shí)際開發(fā)中該對象要提取出去**********************/ /** * @description: * @author: chenmingjian * @date: 19-4-3 14:44 */ @EqualsAndHashCode(callSuper = true) @Data public static class TableHeaderExcelProperty extends BaseRowModel { /** * value: 表頭名稱 * index: 列的號, 0表示第一列 */ @ExcelProperty(value = "姓名", index = 0) private String name; @ExcelProperty(value = "年齡",index = 1) private int age; @ExcelProperty(value = "學(xué)校",index = 2) private String school; } /*******************匿名內(nèi)部類,實(shí)際開發(fā)中該對象要提取出去**********************/ }

作者 | 沖奶粉的奶爸

來源 |

1.《【excel導(dǎo)入怎么導(dǎo)】歷史上最完整的Excel導(dǎo)入和導(dǎo)出(easyexcel版)》援引自互聯(lián)網(wǎng),旨在傳遞更多網(wǎng)絡(luò)信息知識,僅代表作者本人觀點(diǎn),與本網(wǎng)站無關(guān),侵刪請聯(lián)系頁腳下方聯(lián)系方式。

2.《【excel導(dǎo)入怎么導(dǎo)】歷史上最完整的Excel導(dǎo)入和導(dǎo)出(easyexcel版)》僅供讀者參考,本網(wǎng)站未對該內(nèi)容進(jìn)行證實(shí),對其原創(chuàng)性、真實(shí)性、完整性、及時(shí)性不作任何保證。

3.文章轉(zhuǎn)載時(shí)請保留本站內(nèi)容來源地址,http://f99ss.com/keji/2492374.html