目录

前言

1.常规导入

2.读取到指定的列

3.读取全部的sheet页

4.日期、数字及其他自定义格式的转换

5.表头有多行的表格读取

6.表头数据的读取

7.单元格内的备注内容读取


前言

excel表格的导入与导出,可以说是业务系统里比较常见的功能了,早些时候相信很多人都是使用POI实现excel的导入与导出功能,后来出现了easyexcel,从我自己的使用感受来说,我更喜欢使用easyexcel,除了封装的比较好外,最重要的是对超级大excel导入有了更好的方案,与POI相比,速度更快,占用内存更少。

1.常规导入

有一个学生的信息如下图,后台解析excel并把数据封装好。

1.根据excel表格的内容封装好实体类Student.java;

2.实现读取监听器ReadListenerr接口,(在上一篇文章中刚分享过事件监听机制,这里就用到了),主要原理就是easyexcel在解析excel的时候,会把每一行数据封装成一个事件,每一个事件被触发的时候监听器的回调方法invoke()就会被调用;

3.ReadListenerr接口的实现类里定义一个成员变量,用来接受解析出来的数据;(监听器的实现方式比poi的实现要灵活的多,这里可以根据实际业务场景来定义解析出来多少行数据再执行入库的操作,easyexcle本身提供了这样一种实现PageReadListener,可以自行参考);

4.使用easyexcel的工厂类EasyExcel可执行读取的相关操作;

@Data
public class Student implements Serializable {private Integer id;private String stuCode;private String stuName;private String sex;private String born;private Integer age;private String address;private String motherName;private String fatherName;private Integer grade;private Integer classNum;
}
public class StudentReadListener implements ReadListener<Student> {private List<Student> students=new ArrayList<>();public List<Student> getStudents() {return students;}@Overridepublic void invoke(Student data, AnalysisContext context) {//easyexcel是逐行读取,每读取一行就放到集合里;//如果导入数据不多,可以读取结束后,再统一入库students.add(data);}@Overridepublic void doAfterAllAnalysed(AnalysisContext context) {}
}
@Test
public void read(){String userDir = System.getProperty("user.dir");String importPath=userDir+File.separator+"import";File dir = new File(importPath);if (!dir.exists()) {dir.mkdirs();}String importFile=importPath+File.separator+"学生信息表.xlsx";StudentReadListener studentReadListener = new StudentReadListener();EasyExcel.read(importFile, Student.class, studentReadListener).sheet().doRead();List<Student> students = studentReadListener.getStudents();System.out.println(students.size());}

2.读取到指定的列

有的时候会有这样的需求,导入数据时打算导入3列(学号、姓名、地址),但是Student类里会有很多属性(id、学号、姓名、性别、年龄、地址、出生年月),直接导入会有异常抛出;像这样读取到指定列的需求很简单,保持其他不变,只需要在Student类的指定列加上@ExcelProperty(index=xx)就好了。

@Data
public class Student implements Serializable {private Integer id;@ExcelProperty(index =0)private String stuCode;@ExcelProperty(index =1)private String stuName;private String sex;private String born;private Integer age;@ExcelProperty(index = 2)private String address;private String motherName;private String fatherName;private Integer grade;private Integer classNum;
}
@Test
public void readCustomColumn(){String userDir = System.getProperty("user.dir");String importPath = userDir + File.separator + "import";File dir = new File(importPath);if (!dir.exists()) {dir.mkdirs();}String importFile = importPath + File.separator + "学生信息表.xlsx";StudentReadListener studentReadListener = new StudentReadListener();EasyExcel.read(importFile, Student.class, studentReadListener).sheet("Sheet2").doRead();List<Student> students = studentReadListener.getStudents();for (Student student : students) {System.out.println(student.getStuName());}
}

3.读取全部的sheet页

这里需要注意两个地方:1、读取shee页的数据结构是一样的;2、excel的列与接收数据类的属性是一一对应的,如果不对应,可参考读取到指定列部分,使用@ExcelProperty(index=xx)显性的指定对应关系;

@Data
public class Student implements Serializable {private Integer id;private String stuCode;private String stuName;private String sex;private String born;private Integer age;private String address;private String motherName;private String fatherName;private Integer grade;private Integer classNum;
}
@Test
public void readAllSheet(){String userDir = System.getProperty("user.dir");String importPath = userDir + File.separator + "import";File dir = new File(importPath);if (!dir.exists()) {dir.mkdirs();}String importFile = importPath + File.separator + "学生信息表.xlsx";StudentReadListener studentReadListener = new StudentReadListener();EasyExcel.read(importFile, Student.class, studentReadListener).doReadAll();List<Student> students = studentReadListener.getStudents();for (Student student : students) {System.out.println(student.getStuName());}
}

4.日期、数字及其他自定义格式的转换

在导入或者导出excel的时候,如果想对某一列的数据格式作调整转换,可以自定义一个转换器(com.alibaba.excel.converters.Converter),然后这个个转换器通过@ExcelProperty(converter=xxxxx.class)标记在接收参数的类型的属性上;

这种转换数据格式的需求,有时候是主动的,有时候是被动的。什么是主动的的呢?假如前数据为库存储的日期格式是yyyyMMdd,导出的时候想要的是xxxx年xx月xx日,然后你就可以实现一个类型转换器(Converter)主动完成这个事。下面举个被动的例子,excel中关于日期的一个坑,绕不过的坑,所以是“被动”滴。

excel中单元格式格式是日期时,easyexcel解析后是一个数字,这不是解析错误了,而是excel中对于日期存储的格式就是数字,这个数字代表的是1900年1月1日,到单元格式内日期的天数,所以解析结果中是一个数字并不难理解,但是这不是我我们想要的结果呀。更恶心的是,java中的Date的时间起点1970年1月1日,所以被动的需求就产生了,需要把一个以1900-1-1为起天的天数代表的日期,转换为以1970-1-1为起点的java.util.Date。标准的不统一,产生的结果就是这么恶心。

public class SalaryDateConverter implements Converter<String> {@Overridepublic Class<?> supportJavaTypeKey() {return String.class;}@Overridepublic CellDataTypeEnum supportExcelTypeKey() {return CellDataTypeEnum.STRING;}//导入的时候会走这个方法,导入的转换逻辑可以在这个方法里实现@Overridepublic String convertToJavaData(ReadCellData<?> cellData, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) throws Exception {BigDecimal numberValue = cellData.getNumberValue();//平时不要动不动就搞个util工具类,我曾经目睹一个新同事,用上用不上的也不管,上来在工程里导入了几十个工具类,搞得maven依赖冲突// org.apache.poi.ss.usermodel.DateUtil是POI的工具类,// DateUtil.getJavaDate()的功能就是把以1900-1-1为起点的日期天数转换成java.util.Date,直接拿来用就好了,基本不用担心里面有bugDate javaDate = DateUtil.getJavaDate(numberValue.doubleValue());//com.alibaba.excel.util.DateUtils是easyexcel封装的日期转换工具类,能用就用上呗,基本也不用担心有bugString format = DateUtils.format(javaDate, DateUtils.DATE_FORMAT_10);return format;}//导出的时候会走这个方法,导出的转换逻辑可以在这个方法里实现@Overridepublic WriteCellData<?> convertToExcelData(String value, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) throws Exception {return null;}
}
@Data
public class EmpSalary  {@ExcelProperty("姓名")private String realName;@ExcelProperty("员工编号")private String empNo;@ExcelProperty(value = "工资日期",converter = SalaryDateConverter.class)private String salaryDate;@ExcelProperty("工资数额")private Float amount;
}
@Test
public void readByConvert(){String userDir = System.getProperty("user.dir");String importPath = userDir + File.separator + "import";File dir = new File(importPath);if (!dir.exists()) {dir.mkdirs();}String importFile = importPath + File.separator + "员工工资表.xlsx";EmpSalaryReadListener empSalaryReadListener = new EmpSalaryReadListener();EasyExcel.read(importFile, EmpSalary.class, empSalaryReadListener).sheet().doRead();List<EmpSalary> empSalaries = empSalaryReadListener.getEmpSalaries();System.out.println(empSalaries.size());
}

5.表头有多行的表格读取

easyexcel在读取表格内容的时候,默认是从第二行开始读的,因为第一行通常是表头,所以上面没有指定从第几行开始读也没有问题。但是遇到下图样式的复合表头的时候,表头是占了两行,数据是从第三行开始的,那么在读取的时候读取监听器、接收数据的类没有变化,而是在读取的时候要显性指定从第几行开始读,实际指定的时候是索引,从0开始,第三行的索引就是2;

@Test
public void readManyRow(){String userDir = System.getProperty("user.dir");String importPath = userDir + File.separator + "import";File dir = new File(importPath);if (!dir.exists()) {dir.mkdirs();}String importFile = importPath + File.separator + "员工工资表 - 副本.xlsx";EmpSalaryReadListener empSalaryReadListener = new EmpSalaryReadListener();//数据从第三行开始,索引是2EasyExcel.read(importFile, EmpSalary.class, empSalaryReadListener).sheet().headRowNumber(2).doRead();List<EmpSalary> empSalaries = empSalaryReadListener.getEmpSalaries();System.out.println(empSalaries.size());
}
@Data
public class EmpSalary  {private String realName;private String empNo;@ExcelProperty(value = "工资日期",converter = SalaryDateConverter.class)private String salaryDate;private Float baseAmount;private Float fullAttendAmount;private Float insurance;
}

6.表头数据的读取

有时候也会有这样的需求,就是除了读取表格的数据外,表头的数据也要读取出来,easyexcel的读取监听器里的实现类里重写invokeHead()方法即可,下面以读取多行表头,写一个示例:

public class EmpSalaryReadListener implements ReadListener<EmpSalary> {private List<EmpSalary> empSalaries=new ArrayList<>();public List<EmpSalary> getEmpSalaries() {return empSalaries;}@Overridepublic void invoke(EmpSalary data, AnalysisContext context) {empSalaries.add(data);}@Overridepublic void doAfterAllAnalysed(AnalysisContext context) {}@Overridepublic void invokeHead(Map<Integer, ReadCellData<?>> headMap, AnalysisContext context) {for (Integer key : headMap.keySet()) {System.out.println("key:"+key+","+headMap.get(key).getStringValue());}System.out.println("---------");}
}

表头信息也是逐行读取的,即每读取一行就会回调一下监听器的表头读取回调方法(invokeHead()),表头信息结果是存储在一个map中,map的key为excel表格列上的索引,value是表头信息。对于多行合并单元格后,合并单元格后的内容在第一个格里,其他单元格也会占一个位置但是是空的;

7.单元格内的备注内容读取

业务上需求有时候是千变万化的,比如读取了excel表格内容,还要求读取某些单元格上的备注内容,并记录好是第几行第几列,easyexcel的读取监听器实际也有这样的回调方法(extra()),需要在读取监听器的实现类里重写这个方法;

public class EmpSalaryReadListener implements ReadListener<EmpSalary> {private List<EmpSalary> empSalaries = new ArrayList<>();public List<EmpSalary> getEmpSalaries() {return empSalaries;}@Overridepublic void invoke(EmpSalary data, AnalysisContext context) {empSalaries.add(data);}@Overridepublic void doAfterAllAnalysed(AnalysisContext context) {}@Overridepublic void extra(CellExtra extra, AnalysisContext context) {if(extra.getType().equals(CellExtraTypeEnum.COMMENT)){System.out.println("行:"+(extra.getRowIndex()+1));System.out.println("列:"+(extra.getColumnIndex()+1));System.out.println("备注内容:"+extra.getText());}}
}
@Test
public void readExtra(){String userDir = System.getProperty("user.dir");String importPath = userDir + File.separator + "import";File dir = new File(importPath);if (!dir.exists()) {dir.mkdirs();}String importFile = importPath + File.separator + "员工工资表 - 副本.xlsx";EmpSalaryReadListener empSalaryReadListener = new EmpSalaryReadListener();EasyExcel.read(importFile, EmpSalary.class, empSalaryReadListener).extraRead(CellExtraTypeEnum.COMMENT).sheet().headRowNumber(2).doRead();List<EmpSalary> empSalaries = empSalaryReadListener.getEmpSalaries();System.out.println(empSalaries.size());
}

SpringBoot中使用Easyexcel实现Excel导入导出功能(一)_凡夫贩夫的博客-CSDN博客excel表格的导入与导出,可以说是业务系统里比较常见的功能了,早些时候相信很多人都是使用POI实现excel的导入与导出功能,后来出现了easyexcel,从我自己的使用感受来说,我更喜欢使用easyexcel,除了封装的比较好外,最重要的是对超级大excel导入有了更好的方案,与POI相比,速度更快,占用内存更少。https://blog.csdn.net/fox9916/article/details/128242237?spm=1001.2014.3001.5502
SpringBoot中使用Easyexcel实现Excel导入导出功能(二)_凡夫贩夫的博客-CSDN博客自定义格式转换的后导出可以参考上一篇《Springboot+Easyexcel:导入excl》中的日期、数字及其他自定义格式的转换部分,SalaryDateConverter#convertToExcelData(),导出时候的数据格式转换逻辑可以写在这里面;SalaryDateConverter#convertToJavaData()导入时候的数据格式转换的实现逻辑可以写在这里;SalaryDateConverter实现了com.alibaba.excel.converters.Converter接口;https://blog.csdn.net/fox9916/article/details/128258929?spm=1001.2014.3001.5502

SpringBoot中使用Easyexcel实现Excel导入导出功能(三)_凡夫贩夫的博客-CSDN博客我比较喜欢使用easyexcel的一个很重要的原因就是,easyexcel在poi的基础上,封装的比较友好。就比如,在导出的时候,很多情况下需要自定义表格的样式,easyexcel就提供了多种的实现方式。主要有三种:1、通过注解;2、编程式;3、自定义类型转换器。通过编程式来自定义导出表格的样式中,有一个非常关键类HorizontalCellStyleStrategy。1、通过HorizontalCellStyleStrategy可以配置好表头的样式和数据行的样式;https://blog.csdn.net/fox9916/article/details/128270689?spm=1001.2014.3001.5502

Springboot扩展点系列实现方式、工作原理集合:

Springboot扩展点之ApplicationContextInitializer

Springboot扩展点之BeanDefinitionRegistryPostProcessor

Springboot扩展点之BeanFactoryPostProcessor

Springboot扩展点之BeanPostProcessor

Springboot扩展点之InstantiationAwareBeanPostProcessor

Springboot扩展点之SmartInstantiationAwareBeanPostProcessor

Springboot扩展点之ApplicationContextAwareProcessor

Springboot扩展点之@PostConstruct

Springboot扩展点之InitializingBean

Springboot扩展点之DisposableBean

Springboot扩展点之SmartInitializingSingleton

Springboot核心功能工作原理:

Springboot实现调度任务的工作原理

Springboot事件监听机制的工作原理

SpringBoot中使用Easyexcel实现Excel导入导出功能(一)相关推荐

  1. SpringBoot中使用Easyexcel实现Excel导入导出功能(三)

    导出的数据包含有图片 导出excel表格的数据包含有图片,这种场景比较少.通Easyexcel实现这样的需求,我认为最简便的方法就是使用前面提到的自定义转换器(com.alibaba.excel.co ...

  2. SpringBoot中使用POI实现Excel导入到数据库(图文教程已实践)

    场景 IDEA中开发SpringBoot项目时需要将Excel模板中数据导入的到数据库. Excel模板如下 实现思想 首先将模板上传到服务器中某路径,并将当前路径存储,然后使用POI自带的 工具类获 ...

  3. SpringBoot 项目实现 Excel 导入导出功能

    背景 Excel 导入与导出是项目中经常用到的功能,在 Java 中常用 poi 实现 Excel 的导入与导出.由于 poi 占用内存较大,在高并发下很容易发生 OOM 或者频繁 fullgc,阿里 ...

  4. SpringBoot 项目优雅实现 Excel 导入导出功能

    背景 Excel 导入与导出是项目中经常用到的功能,在 Java 中常用 poi 实现 Excel 的导入与导出.由于 poi 占用内存较大,在高并发下很容易发生 OOM 或者频繁 fullgc,阿里 ...

  5. 【飞秋】ASP.NET 之 常用类、方法的超级总结,并包含动态的EXCEL导入导出功能,奉上类库源码

    最近闲了,花点几天时间将项目中常用的一些类.方法做了一下总结,希望对大家有用. 实用类:UtilityClass 包含如下方法 判断对象是否为空或NULL,如果是空或NULL返回true,否则返回fa ...

  6. tiptop使用java的poi包实现EXCEL导入导出功能

    4gl可以调用java的poi包实现EXCEL的导入导出,今天分享一个EXCEL导入的功能!  一:环境搭建  1:poi文件导入  首先下载POI文件(找不到的可以私信我),解压后上传到ERP的服务 ...

  7. VUE的Excel导入导出功能

    在做人力资源管理的后台项目时,实现了excel表的导入导出功能.用到了vue-element-admin提供的框架(链接地址 ),我们只需要在自己的项目中封装改造即可. 项目中实现excel表的导入与 ...

  8. vue中实现Excel导入导出功能

    导入Excel功能 前置条件: 依赖包xlsx npm install xlsx -S 这里提供一个现成的在vue中导入Excel的功能(原作者-花裤衩),代码在最下面,可直接复制. 创建一个文件夹, ...

  9. 前端 - excel导入 / 导出功能

    1. 导入功能 1.1 前端主导(工作大量在前端) 上传excel文件,把excel文件的内容读出来,还原成最基本的行列结构,按后端的接口要求回传过去. 前端读excel文件,调接口 1.2 后端主导 ...

最新文章

  1. Python 错误和异常小结
  2. PUTTY、Xshell远程连接Linux与PUTTY、Xshell密匙认证
  3. Qt Creator编辑2D内容
  4. 年轻程序员需要学习的5大经验
  5. 从源码剖析SpringBoot中Tomcat的默认最大连接数
  6. 英国萨里大学金耀初教授:进化计算在人工智能领域的发展
  7. [转].NET 开源项目 Anet 介绍
  8. Spring Cloud项目MVN编译 -- Non-resolvable import POM
  9. 前端学习(1757):前端调试值之网络条件与user-Agent的设置
  10. linux中bc用法英文,使用GNU bc在Linux Shell中进行数学运算
  11. platform_device_add()函数分析
  12. 【JavaFx】eclipse搭建JavaFx开发环境
  13. Oracle11g x64使用Oracle SQL Developer报错:Unable to find a Java Virtual Machine
  14. android开发实战-记账本APP(二)
  15. table表格实现第一列固定
  16. OpenAI 开源语音识别模型 Whisper 初体验
  17. Vue2积分商城PC端项目(六)
  18. nginx配置静态资源,重新发布后,浏览器缓存导致异常原因和解决
  19. PP生产计划-Routing工艺路线
  20. 程序猿从不缺对象,想要随时可以new出来一个

热门文章

  1. EXCEL VBA 自定义函数 招标代理费计算
  2. java销毁窗口_java – 如何正确销毁JDialog?
  3. 1.8G专网工业路由器促进4G智能电力建设,赋能配电站远程监控管理
  4. 创成汇:创新创业人才政策如何申报?
  5. KeyShot如何导入模型文件
  6. Windows 系统下,移动硬盘无法识别怎么修复?
  7. Python flask框架(6)
  8. 微粉助手 v1.3.3
  9. Stream流代码总结
  10. Launcher PAI无法自动下载某个应用