文章目次
- 情况搭建
- 读取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的数据
获取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);
效果
模子映射导出
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 文件绝对路径
* 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版)
- 第二部门:开源框架(SSM:Spring+SpringMVC+MyBatis)
- 第三部门:性能调优(JVM+MySQL+Tomcat)
- 第四部门:分布式(限流:ZK+Nginx;缓存:Redis+MongoDB+Memcached;通讯:MQ+kafka)
- 第五部门:微服务(SpringBoot+SpringCloud+Dubbo)
- 第六部门:其他:并发编程+设计模式+数据结构与算法+网络
进阶学习笔记pdf
- Java架构进阶之架构筑基篇(Java底子+并发编程+JVM+MySQL+Tomcat+网络+数据结构与算法)
- Java架构进阶之开源框架篇(设计模式+Spring+SpringMVC+MyBatis)
- Java架构进阶之分布式架构篇 (限流(ZK/Nginx)+缓存(Redis/MongoDB/Memcached)+通讯(MQ/kafka))
- Java架构进阶之微服务架构篇(RPC+SpringBoot+SpringCloud+Dubbo+K8s)
流: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企服之家,中国第一个企服评测及商务社交产业平台。 |