【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的数据

24be96268578aeece869e8b38259c844.png 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);

结果

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基础-中级-高级

image

  • 第二部分:开源框架(SSM:Spring+SpringMVC+MyBatis)

image

  • 第三部分:性能调优(JVM+MySQL+Tomcat)

image

  • 第四部分:分布式(限流:ZK+Nginx;缓存:Redis+MongoDB+Memcached;通讯:MQ+kafka)

image

  • 第五部分:微服务(SpringBoot+SpringCloud+Dubbo)

image

  • 第六部分:其他:并发编程+设计模式+数据结构与算法+网络

image

进阶学习笔记pdf

  • Java架构进阶之架构筑基篇(Java基础+并发编程+JVM+MySQL+Tomcat+网络+数据结构与算法

image

  • Java架构进阶之开源框架篇(设计模式+Spring+SpringMVC+MyBatis

image

image

image

  • Java架构进阶之分布式架构篇 (限流(ZK/Nginx)+缓存(Redis/MongoDB/Memcached)+通讯(MQ/kafka)

image

image

image

  • Java架构进阶之微服务架构篇(RPC+SpringBoot+SpringCloud+Dubbo+K8s)

image

image

流: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)]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值