郭卫东 发表于 2024-8-23 14:25:33

【120期】阿里大佬开源 easyexcel,史上最全实现 Excel 导入导出!

文章目次


[*] 情况搭建
[*] 读取excel文件
[*] 默认读取
[*] 指定读取
[*] 默认读取
[*] 指定读取
[*] 小于1000行数据
[*] 大于1000行数据
[*] 导出excle
[*] 无模子映射导出
[*] 模子映射导出
[*] 单个Sheet导出
[*] 多个Sheet导出
[*] 工具类
[*] 测试类
情况搭建


[*] easyexcel 依赖(必须)
[*] springboot (不是必须)
[*] lombok (不是必须)
com.alibaba
easyexcel
1.1.2-beat1
org.projectlombok
lombok
1.18.2
读取excel文件
小于1000行数据

默认读取

读取Sheet1的全部数据
String filePath = “/home/chenmingjian/Downloads/学生表.xlsx”;
List objects = ExcelUtil.readLessThan1000Row(filePath);
指定读取

下面是学生表.xlsx中Sheet1,Sheet2的数据
https://img-blog.csdnimg.cn/img_convert/24be96268578aeece869e8b38259c844.png https://img-blog.csdnimg.cn/img_convert/7b9c080b47676beaca98f8b86b33a1c6.png
获取Sheet1表头以下的信息
String filePath = “/home/chenmingjian/Downloads/学生表.xlsx”;
//第一个1代表sheet1, 第二个1代表从第几行开始读取数据,行号最小值为0
Sheet sheet = new Sheet(1, 1);
List objects = ExcelUtil.readLessThan1000Row(filePath,sheet);
获取Sheet2的所有信息
String filePath = “/home/chenmingjian/Downloads/学生表.xlsx”;
Sheet sheet = new Sheet(2, 0);
List objects = ExcelUtil.readLessThan1000Row(filePath,sheet);
大于1000行数据

默认读取

String filePath = “/home/chenmingjian/Downloads/学生表.xlsx”;
List objects = ExcelUtil.readMoreThan1000Row(filePath);
指定读取

String filePath = “/home/chenmingjian/Downloads/学生表.xlsx”;
Sheet sheet = new Sheet(1, 2);
List objects = ExcelUtil.readMoreThan1000Row(filePath,sheet);
导出excle
单个Sheet导出

无模子映射导出

String filePath = “/home/chenmingjian/Downloads/测试.xlsx”;
List<List> data = new ArrayList<>();
data.add(Arrays.asList(“111”,“222”,“333”));
data.add(Arrays.asList(“111”,“222”,“333”));
data.add(Arrays.asList(“111”,“222”,“333”));
List head = Arrays.asList(“表头1”, “表头2”, “表头3”);
ExcelUtil.writeBySimple(filePath,data,head);
效果
https://img-blog.csdnimg.cn/img_convert/1c3b141b7b6bb883c2a08cb1dc8fb4f1.png
模子映射导出

1、定义好模子对象
package com.springboot.utils.excel.test;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.metadata.BaseRowModel;
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 = “学校”,index = 2)
private String school;
}
2、调用方法
String filePath = “/home/chenmingjian/Downloads/测试.xlsx”;
ArrayList data = new ArrayList<>();
for(int i = 0; i < 4; i++){
TableHeaderExcelProperty tableHeaderExcelProperty = new TableHeaderExcelProperty();
tableHeaderExcelProperty.setName(“cmj” + i);
tableHeaderExcelProperty.setAge(22 + i);
tableHeaderExcelProperty.setSchool(“清华大学” + i);
data.add(tableHeaderExcelProperty);
}
ExcelUtil.writeWithTemplate(filePath,data);
多个Sheet导出

1、定义好模子对象
package com.springboot.utils.excel.test;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.metadata.BaseRowModel;
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 = “学校”,index = 2)
private String school;
}
2、调用方法
ArrayList<ExcelUtil.MultipleSheelPropety> list1 = new ArrayList<>();
for(int j = 1; j < 4; j++){
ArrayList list = new ArrayList<>();
for(int i = 0; i < 4; i++){
TableHeaderExcelProperty tableHeaderExcelProperty = new TableHeaderExcelProperty();
tableHeaderExcelProperty.setName(“cmj” + i);
tableHeaderExcelProperty.setAge(22 + i);
tableHeaderExcelProperty.setSchool(“清华大学” + i);
list.add(tableHeaderExcelProperty);
}
Sheet sheet = new Sheet(j, 0);
sheet.setSheetName(“sheet” + j);
ExcelUtil.MultipleSheelPropety multipleSheelPropety = new ExcelUtil.MultipleSheelPropety();
multipleSheelPropety.setData(list);
multipleSheelPropety.setSheet(sheet);
list1.add(multipleSheelPropety);
}
ExcelUtil.writeWithMultipleSheel(“/home/chenmingjian/Downloads/aaa.xlsx”,list1);
工具类
package com.springboot.utils.excel;
import com.alibaba.excel.EasyExcelFactory;
import com.alibaba.excel.ExcelWriter;
import com.alibaba.excel.context.AnalysisContext;
import com.alibaba.excel.event.AnalysisEventListener;
import com.alibaba.excel.metadata.BaseRowModel;
import com.alibaba.excel.metadata.Sheet;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
import org.springframework.util.CollectionUtils;
import org.springframework.util.StringUtils;
import java.io.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* @description:
* @author: chenmingjian
* @date: 19-3-18 16:16
*/
@Slf4j
public class ExcelUtil {
private static Sheet initSheet;
static {
initSheet = new Sheet(1, 0);
initSheet.setSheetName(“sheet”);
//设置自适应宽度
initSheet.setAutoWidth(Boolean.TRUE);
}
/**
* 读取少于1000行数据
* @param filePath 文件绝对路径
* @return
*/
public static List readLessThan1000Row(String filePath){
return readLessThan1000RowBySheet(filePath,null);
}
/**
* 读小于1000行数据, 带样式
* filePath 文件绝对路径


[*]initSheet :
*      sheetNo: sheet页码,默以为1
*      headLineMun: 从第几行开始读取数据,默以为0, 表示从第一行开始读取
*      clazz: 返回数据List 中Object的类名
*/
public static List readLessThan1000RowBySheet(String filePath, Sheet sheet){
if(!StringUtils.hasText(filePath)){
return null;
}
sheet = sheet != null ? sheet : initSheet;
InputStream fileStream = null;
try {
fileStream = new FileInputStream(filePath);
return EasyExcelFactory.read(fileStream, sheet);
} catch (FileNotFoundException e) {
log.info(“找不到文件或文件路径错误, 文件:{}”, filePath);
}finally {
try {
if(fileStream != null){
fileStream.close();
}
} catch (IOException e) {
log.info(“excel文件读取失败, 失败原因:{}”, e);
}
}
return null;
}
/**
* 读大于1000行数据
* @param filePath 文件以为路径
* @return
*/
public static List readMoreThan1000Row(String filePath){
return readMoreThan1000RowBySheet(filePath,null);
}
/**
* 读大于1000行数据, 带样式
* @param filePath 文件以为路径
* @return
*/
public static List readMoreThan1000RowBySheet(String filePath, Sheet sheet){
if(!StringUtils.hasText(filePath)){
return null;
}
sheet = sheet != null ? sheet : initSheet;
InputStream fileStream = null;
try {
fileStream = new FileInputStream(filePath);
ExcelListener excelListener = new ExcelListener();
EasyExcelFactory.readBySax(fileStream, sheet, excelListener);
return excelListener.getDatas();
} catch (FileNotFoundException e) {
log.error(“找不到文件或文件路径错误, 文件:{}”, filePath);
}finally {
try {
if(fileStream != null){
fileStream.close();
}
} catch (IOException e) {
log.error(“excel文件读取失败, 失败原因:{}”, e);
}
}
return null;
}
/**
* 天生excle
* @param filePath  绝对路径, 如:/home/chenmingjian/Downloads/aaa.xlsx
* @param data 数据源
* @param head 表头
*/
public static void writeBySimple(String filePath, List<List> data, List head){
writeSimpleBySheet(filePath,data,head,null);
}
/**
* 天生excle
* @param filePath 绝对路径, 如:/home/chenmingjian/Downloads/aaa.xlsx
* @param data 数据源
* @param sheet excle页面样式
* @param head 表头
*/
public static void writeSimpleBySheet(String filePath, List<List> data, List head, Sheet sheet){
sheet = (sheet != null) ? sheet : initSheet;
if(head != null){
List<List> list = new ArrayList<>();
head.forEach(h -> list.add(Collections.singletonList(h)));
sheet.setHead(list);
}
OutputStream outputStream = null;
ExcelWriter writer = null;
try {
outputStream = new FileOutputStream(filePath);
writer = EasyExcelFactory.getWriter(outputStream);
writer.write1(data,sheet);
} catch (FileNotFoundException e) {
log.error(“找不到文件或文件路径错误, 文件:{}”, filePath);
}finally {
try {
if(writer != null){
writer.finish();
}
if(outputStream != null){
outputStream.close();
}
} catch (IOException e) {
log.error(“excel文件导出失败, 失败原因:{}”, e);
}
}
}
/**
* 天生excle
* @param filePath 绝对路径, 如:/home/chenmingjian/Downloads/aaa.xlsx
* @param data 数据源
*/
public static void writeWithTemplate(String filePath, List<? extends BaseRowModel> data){
writeWithTemplateAndSheet(filePath,data,null);
}
/**
* 天生excle
* @param filePath 绝对路径, 如:/home/chenmingjian/Downloads/aaa.xlsx
* @param data 数据源
* @param sheet excle页面样式
*/
public static void writeWithTemplateAndSheet(String filePath, List<? extends BaseRowModel> data, Sheet sheet){
if(CollectionUtils.isEmpty(data)){
return;
}
sheet = (sheet != null) ? sheet : initSheet;
sheet.setClazz(data.get(0).getClass());
OutputStream outputStream = null;
ExcelWriter writer = null;
try {
outputStream = new FileOutputStream(filePath);
writer = EasyExcelFactory.getWriter(outputStream);
writer.write(data,sheet);
} catch (FileNotFoundException e) {
log.error(“找不到文件或文件路径错误, 文件:{}”, filePath);
}finally {
try {
复习的面试资料

   这些面试全部出自负厂面试真题和面试合集当中,小编已经为大家整理完毕(PDF版)


[*]第一部门:Java底子-中级-高级
https://img-blog.csdnimg.cn/img_convert/18909f502237845e790c25cd7db72efb.webp?x-oss-process=image/format,png


[*]第二部门:开源框架(SSM:Spring+SpringMVC+MyBatis)
https://img-blog.csdnimg.cn/img_convert/9a0a662016241aa808e6732aeb41a920.webp?x-oss-process=image/format,png


[*]第三部门:性能调优(JVM+MySQL+Tomcat)
https://img-blog.csdnimg.cn/img_convert/c0e0fe86858cdade5693d2550e4d8f1e.webp?x-oss-process=image/format,png


[*]第四部门:分布式(限流:ZK+Nginx;缓存:Redis+MongoDB+Memcached;通讯:MQ+kafka)
https://img-blog.csdnimg.cn/img_convert/199c56b871c317526a4d055601cb24d8.webp?x-oss-process=image/format,png


[*]第五部门:微服务(SpringBoot+SpringCloud+Dubbo)
https://img-blog.csdnimg.cn/img_convert/317d7114d43fd74b79a6d92720d1f0e3.webp?x-oss-process=image/format,png


[*]第六部门:其他:并发编程+设计模式+数据结构与算法+网络
https://img-blog.csdnimg.cn/img_convert/75677eed51a0a116db2fbfc62eeb8ca0.webp?x-oss-process=image/format,png
进阶学习笔记pdf

   

[*]Java架构进阶之架构筑基篇(Java底子+并发编程+JVM+MySQL+Tomcat+网络+数据结构与算法)
https://img-blog.csdnimg.cn/img_convert/efd54aa6a5f06ce20c401ba15f0caab8.webp?x-oss-process=image/format,png


[*]Java架构进阶之开源框架篇(设计模式+Spring+SpringMVC+MyBatis)
https://img-blog.csdnimg.cn/img_convert/6e9ce21308f65ffefc6d9fa98796ddd9.webp?x-oss-process=image/format,png
https://img-blog.csdnimg.cn/img_convert/a0ba4909b0da0441967f21ebd2932734.webp?x-oss-process=image/format,png
https://img-blog.csdnimg.cn/img_convert/b98a69033e0cd7064ee56568026ed5c9.webp?x-oss-process=image/format,png


[*]Java架构进阶之分布式架构篇 (限流(ZK/Nginx)+缓存(Redis/MongoDB/Memcached)+通讯(MQ/kafka))
https://img-blog.csdnimg.cn/img_convert/088703bbe2eb180913aad4c2b999c6b2.webp?x-oss-process=image/format,png
https://img-blog.csdnimg.cn/img_convert/dcc9c4e72d4fa6f1290ef32bcbcc07f2.webp?x-oss-process=image/format,png
https://img-blog.csdnimg.cn/img_convert/959915290a457fcfc6d743f7ef266485.webp?x-oss-process=image/format,png


[*]Java架构进阶之微服务架构篇(RPC+SpringBoot+SpringCloud+Dubbo+K8s)
https://img-blog.csdnimg.cn/img_convert/b4c721cef7f8a113cde68e8c6166a7d1.webp?x-oss-process=image/format,png
https://img-blog.csdnimg.cn/img_convert/d12061e98e6d83243ad97c3f2721bac5.webp?x-oss-process=image/format,png
流:ZK+Nginx;缓存:Redis+MongoDB+Memcached;通讯:MQ+kafka)**
[外链图片转存中…(img-WNSKul3j-1719178597946)]


[*]第五部门:微服务(SpringBoot+SpringCloud+Dubbo)
[外链图片转存中…(img-RUV1CPTZ-1719178597946)]


[*]第六部门:其他:并发编程+设计模式+数据结构与算法+网络
[外链图片转存中…(img-K22hac3n-1719178597947)]
进阶学习笔记pdf

   

[*]Java架构进阶之架构筑基篇(Java底子+并发编程+JVM+MySQL+Tomcat+网络+数据结构与算法)
[外链图片转存中…(img-OXBnLGLQ-1719178597948)]


[*]Java架构进阶之开源框架篇(设计模式+Spring+SpringMVC+MyBatis)
[外链图片转存中…(img-FdiqwIpt-1719178597948)]
[外链图片转存中…(img-IGUnRfJB-1719178597950)]
[外链图片转存中…(img-5TUBSux7-1719178597951)]


[*]Java架构进阶之分布式架构篇 (限流(ZK/Nginx)+缓存(Redis/MongoDB/Memcached)+通讯(MQ/kafka))
[外链图片转存中…(img-RyB7ZVhj-1719178597951)]
[外链图片转存中…(img-v6XWq95m-1719178597951)]
[外链图片转存中…(img-YgxXXFXN-1719178597952)]


[*]Java架构进阶之微服务架构篇(RPC+SpringBoot+SpringCloud+Dubbo+K8s)
[外链图片转存中…(img-R1FAXwBm-1719178597952)]
[外链图片转存中…(img-ucLF4CiR-1719178597953)]

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: 【120期】阿里大佬开源 easyexcel,史上最全实现 Excel 导入导出!