欢迎关注方志朋的博客,回复”666“获面试宝典

来源:blog.csdn.net/qq_32258777/article/details/89031479

喝水不忘挖井人,感谢阿里巴巴项目组提供了easyexcel工具类,github地址:

https://github.com/alibaba/easyexcel

文章目录

  • 环境搭建

  • 读取excel文件

    • 默认读取

    • 指定读取

    • 默认读取

    • 指定读取

    • 小于1000行数据

    • 大于1000行数据

  • 导出excle

    • 无模型映射导出

    • 模型映射导出

    • 单个Sheet导出

    • 多个Sheet导出

  • 工具类

  • 测试类

环境搭建

  • easyexcel 依赖(必须)

  • springboot (不是必须)

  • lombok (不是必须)

<dependency><groupId>com.alibaba</groupId><artifactId>easyexcel</artifactId><version>1.1.2-beat1</version></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>1.18.2</version></dependency>

读取excel文件

小于1000行数据

默认读取

读取Sheet1的全部数据

String filePath = "/home/chenmingjian/Downloads/学生表.xlsx";List<Object> 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<Object> objects = ExcelUtil.readLessThan1000Row(filePath,sheet);

获取Sheet2的所有信息

String filePath = "/home/chenmingjian/Downloads/学生表.xlsx";Sheet sheet = new Sheet(2, 0);List<Object> objects = ExcelUtil.readLessThan1000Row(filePath,sheet);

大于1000行数据

默认读取
String filePath = "/home/chenmingjian/Downloads/学生表.xlsx";
List<Object> objects = ExcelUtil.readMoreThan1000Row(filePath);
指定读取
String filePath = "/home/chenmingjian/Downloads/学生表.xlsx";
Sheet sheet = new Sheet(1, 2);
List<Object> objects = ExcelUtil.readMoreThan1000Row(filePath,sheet);

导出excle

单个Sheet导出

无模型映射导出
String filePath = "/home/chenmingjian/Downloads/测试.xlsx";
List<List<Object>> 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<String> 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<TableHeaderExcelProperty> 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<TableHeaderExcelProperty> 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<Object> readLessThan1000Row(String filePath){return readLessThan1000RowBySheet(filePath,null);}/*** 读小于1000行数据, 带样式* filePath 文件绝对路径* initSheet :*      sheetNo: sheet页码,默认为1*      headLineMun: 从第几行开始读取数据,默认为0, 表示从第一行开始读取*      clazz: 返回数据List<Object> 中Object的类名*/public static List<Object> 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<Object> readMoreThan1000Row(String filePath){return readMoreThan1000RowBySheet(filePath,null);}/*** 读大于1000行数据, 带样式* @param filePath 文件觉得路径* @return*/public static List<Object> 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<Object>> data, List<String> 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<Object>> data, List<String> head, Sheet sheet){sheet = (sheet != null) ? sheet : initSheet;if(head != null){List<List<String>> 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 {if(writer != null){writer.finish();}if(outputStream != null){outputStream.close();}} catch (IOException e) {log.error("excel文件导出失败, 失败原因:{}", e);}}}/*** 生成多Sheet的excle* @param filePath 绝对路径, 如:/home/chenmingjian/Downloads/aaa.xlsx* @param multipleSheelPropetys*/public static void writeWithMultipleSheel(String filePath,List<MultipleSheelPropety> multipleSheelPropetys){if(CollectionUtils.isEmpty(multipleSheelPropetys)){return;}OutputStream outputStream = null;ExcelWriter writer = null;try {outputStream = new FileOutputStream(filePath);writer = EasyExcelFactory.getWriter(outputStream);for (MultipleSheelPropety multipleSheelPropety : multipleSheelPropetys) {Sheet sheet = multipleSheelPropety.getSheet() != null ? multipleSheelPropety.getSheet() : initSheet;if(!CollectionUtils.isEmpty(multipleSheelPropety.getData())){sheet.setClazz(multipleSheelPropety.getData().get(0).getClass());}writer.write(multipleSheelPropety.getData(), 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);}}}/*********************匿名内部类开始,可以提取出去******************************/@Datapublic static class MultipleSheelPropety{private List<? extends BaseRowModel> data;private Sheet sheet;}/*** 解析监听器,* 每解析一行会回调invoke()方法。* 整个excel解析结束会执行doAfterAllAnalysed()方法** @author: chenmingjian* @date: 19-4-3 14:11*/@Getter@Setterpublic static class ExcelListener extends AnalysisEventListener {private List<Object> datas = new ArrayList<>();/*** 逐行解析* object : 当前行的数据*/@Overridepublic void invoke(Object object, AnalysisContext context) {//当前行// context.getCurrentRowNum()if (object != null) {datas.add(object);}}/*** 解析完所有数据后会调用该方法*/@Overridepublic void doAfterAllAnalysed(AnalysisContext context) {//解析结束销毁不用的资源}}/************************匿名内部类结束,可以提取出去***************************/}

测试类

package com.springboot.utils.excel;import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.metadata.BaseRowModel;
import com.alibaba.excel.metadata.Sheet;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;/*** @description: 测试类* @author: chenmingjian* @date: 19-4-4 15:24*/
@SpringBootTest
@RunWith(SpringRunner.class)
public class Test {/*** 读取少于1000行的excle*/@org.junit.Testpublic void readLessThan1000Row(){String filePath = "/home/chenmingjian/Downloads/测试.xlsx";List<Object> objects = ExcelUtil.readLessThan1000Row(filePath);objects.forEach(System.out::println);}/*** 读取少于1000行的excle,可以指定sheet和从几行读起*/@org.junit.Testpublic void readLessThan1000RowBySheet(){String filePath = "/home/chenmingjian/Downloads/测试.xlsx";Sheet sheet = new Sheet(1, 1);List<Object> objects = ExcelUtil.readLessThan1000RowBySheet(filePath,sheet);objects.forEach(System.out::println);}/*** 读取大于1000行的excle* 带sheet参数的方法可参照测试方法readLessThan1000RowBySheet()*/@org.junit.Testpublic void readMoreThan1000Row(){String filePath = "/home/chenmingjian/Downloads/测试.xlsx";List<Object> objects = ExcelUtil.readMoreThan1000Row(filePath);objects.forEach(System.out::println);}/*** 生成excle* 带sheet参数的方法可参照测试方法readLessThan1000RowBySheet()*/@org.junit.Testpublic void writeBySimple(){String filePath = "/home/chenmingjian/Downloads/测试.xlsx";List<List<Object>> 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<String> head = Arrays.asList("表头1", "表头2", "表头3");ExcelUtil.writeBySimple(filePath,data,head);}/*** 生成excle, 带用模型* 带sheet参数的方法可参照测试方法readLessThan1000RowBySheet()*/@org.junit.Testpublic void writeWithTemplate(){String filePath = "/home/chenmingjian/Downloads/测试.xlsx";ArrayList<TableHeaderExcelProperty> 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);}/*** 生成excle, 带用模型,带多个sheet*/@org.junit.Testpublic void writeWithMultipleSheel(){ArrayList<ExcelUtil.MultipleSheelPropety> 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();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);}/*******************匿名内部类,实际开发中该对象要提取出去**********************//*** @description:* @author: chenmingjian* @date: 19-4-3 14:44*/@EqualsAndHashCode(callSuper = true)@Datapublic static 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;}/*******************匿名内部类,实际开发中该对象要提取出去**********************/}
热门内容:
  • 我变秃了,也变强了 ...

  • 突发!LayUI宣布下线

  • 再见了Spring Cloud!这个架构有点厉害,甚至干掉了Dubbo

  • 我把SpringBoot的banner换成了美女,老板:工作不饱和,建议加班

  • 别再乱打日志了,这样才是定位 bug 打日志的方式!

最近面试BAT,整理一份面试资料《Java面试BAT通关手册》,覆盖了Java核心技术、JVM、Java并发、SSM、微服务、数据库、数据结构等等。
获取方式:点“在看”,关注公众号并回复 666 领取,更多内容陆续奉上。

明天见(。・ω・。)ノ♡

史上最全的Excel导入导出(easyexcel版)相关推荐

  1. 史上最全的Excel导入导出之easyexcel

    文章目录 环境搭建 读取excel文件 小于1000行数据 默认读取 指定读取 大于1000行数据 默认读取 指定读取 导出excle 单个Sheet导出 无模型映射导出 模型映射导出 多个Sheet ...

  2. Java操作Excel导入导出(EasyExcel)

    在管理一个系统时,总会有许多的数据,为了方便浏览查看数据,系统总会提供「导出Excel」的功能:有导出就有导入,在要向数据库中插入大量的数据时,我们向程序提供准备好的 Excel,然后程序读取表格内容 ...

  3. excel重复上一步快捷键_史上最全的Excel快捷键合集

    Excel是我们工作当中非常常用的办公软件之一,据说真正的Excel高手可以不用操控鼠标,啪啪啪几下键盘,一个报表就完成了. 那么在这过程当中全靠的都是熟悉各个快捷键的使用. 今天我们就来给各位盘点一 ...

  4. 史上最简单的Excel导入通讯录方法

    开发记录 第一天 第二天 第三天 第四天 第N天 第一天 说来话长,这是一个悲伤的故事. 事情的起因,是因为魔都我被封在家里,寂寞难耐的心始终不知道该干点啥,然后就撩起了当设计师的妹子,正巧那天晚上妹 ...

  5. 【开发工具】史上最全的IDEA快捷键总结 MAC版

    前言 工欲善其事,必先利其器 要想学会高效的写代码,这些快捷键的使用一定要掌握 ps: 下面标红的快捷键是笔者经常会用到的, 感觉更为重要. Mac键盘符号和修饰键说明 ⌘ Command ⇧ Shi ...

  6. Java_复杂Excel导入导出和转换

    Excel常用的几种方法:POI,jxls,easypoi,easyexcel 史上最全的excel读写技术分享_烟花散尽13141的博客-CSDN博客_aftercelldispose 1:Easy ...

  7. EXCEL教程大全(史上最全)

    教你做表格(史上最全) 照片名称:自动筛选 照片名称:在Excel中字符替换 照片名称:在Excel中直接编辑"宏" 照片名称:在Excel中为导入外部数据 照片名称:在Excel ...

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

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

  9. 2个recordset合并_史上最全!8种办法玩转Excel文字合并,总有一款适合你!

    本文作者丨 wayy - Excel 研究院 本文由「秋叶 Excel」原创发布 如需转载,请在公众号发送关键词「转载」查看说明 在日常工作过程中, 我们经常会遇到要把一串文字拼接到一起的情况. 你还 ...

最新文章

  1. ospf专题二:虚链路
  2. php获取ip 1,为什么php获取ip显示::1?
  3. 全国计算机等级考试题库二级C操作题100套(第87套)
  4. C++关键字--volatile
  5. 在ASP.NET中对于SESSION的简略说明
  6. 【英语学习】【WOTD】foray 释义/词源/示例
  7. 基于JAVA+SpringMVC+Mybatis+MYSQL的生活质量衡量系统
  8. 动态html树形菜单模板,JS+CSS简易树状菜单Tree
  9. java webengine_webview – JavaFX 8 WebEngine:如何从java到console.log()从java到System.out?
  10. mysql错误Table ‘./mysql/proc’ is marked as crashed and should be repaired
  11. hadoop 权限错误 Permission denied: user=root, access=WRITE, inode=“/“:hdfs:super
  12. lwip路由实现_TCP控制块《LwIP协议栈源码详解——TCP/IP协议的实现》
  13. java语音识别毕业设计,HMM的语音识别技术的毕业设计
  14. N多的红烧茄子做法!
  15. 华氏温度转换为摄氏温度(C语言)
  16. git - 查看远程仓库信息
  17. 网站被流量攻击怎么处理
  18. API网关之Kong初识
  19. 调用marathon rest API
  20. Ext4 vs XFS——你应该使用哪个文件系统

热门文章

  1. 3des密钥生成 java_使用keytool生成3DES密钥
  2. 时间序列举例--------协方差+相关系数+随机游走+平稳性
  3. JavaScript中的加法运算
  4. DOM解析和SAX解析的区别
  5. extjs editgrid增加一行
  6. linux驱动编程入门实例
  7. ie6下常见的bug 调整页面兼容性
  8. ubuntu下安装redis
  9. LeetCode实战:逆波兰表达式求值
  10. 【怎样写代码】复杂对象的组装与创建 -- 建造者模式(二):解决方案