从excel导入到excel(史上最全的Excel导入导出)
从excel导入到excel(史上最全的Excel导入导出)
2024-11-22 03:31:29  作者:寂寞式想念  网址:https://m.xinb2b.cn/tech/idp425234.html

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

http://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);

指定读取

如果您正在学习Spring Boot,推荐一个连载多年还在继续更新的免费教程:http://blog.didispace.com/spring-boot-learning-2x/

下面是学生表.xlsx中Sheet1,Sheet2的数据



获取Sheet1表头以下的信息

String filePath = "/home/chenmingjian/Downloads/学生表.xlsx";//第一个1代表sheet1, 第二个1代表从第几行开始读取数据,行号最小值为0Sheet 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;@EqualsAndHashCode(callSuper = true)@Datapublic class TableHeaderExcelProperty extends BaseRowModel { @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;@EqualsAndHashCode(callSuper = true)@Datapublic class TableHeaderExcelProperty extends BaseRowModel { @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);

工具类

另外,如果您正在学习Spring Cloud,推荐一个连载多年还在继续更新的免费教程:http://blog.didispace.com/spring-cloud-learning/

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;@Slf4jpublic class ExcelUtil { private static Sheet initSheet; static { initSheet = new Sheet(1, 0); initSheet.setSheetName("sheet"); //设置自适应宽度 initSheet.setAutoWidth(Boolean.TRUE); } public static List<Object> readLessThan1000Row(String filePath){ return readLessThan1000RowBySheet(filePath,null); } 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; } public static List<Object> readMoreThan1000Row(String filePath){ return readMoreThan1000RowBySheet(filePath,null); } 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; } public static void writeBySimple(String filePath, List<List<Object>> data, List<String> head){ writeSimpleBySheet(filePath,data,head,null); } 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); } } } public static void writeWithTemplate(String filePath, List<? extends BaseRowModel> data){ writeWithTemplateAndSheet(filePath,data,null); } 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); } } } 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); } } } @Data public static class MultipleSheelPropety{ private List<? extends BaseRowModel> data; private Sheet sheet; } @Getter @Setter public static class ExcelListener extends AnalysisEventListener { private List<Object> datas = new ArrayList<>(); @Override public void invoke(Object object, AnalysisContext context) { //当前行 // context.getCurrentRowNum() if (object != null) { datas.add(object); } } @Override public 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;@SpringBootTest@RunWith(SpringRunner.class)public class Test { @org.junit.Test public void readLessThan1000Row(){ String filePath = "/home/chenmingjian/Downloads/测试.xlsx"; List<Object> objects = ExcelUtil.readLessThan1000Row(filePath); objects.forEach(System.out::println); } @org.junit.Test public 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); } @org.junit.Test public void readMoreThan1000Row(){ String filePath = "/home/chenmingjian/Downloads/测试.xlsx"; List<Object> objects = ExcelUtil.readMoreThan1000Row(filePath); objects.forEach(System.out::println); } @org.junit.Test public 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); } @org.junit.Test public 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); } @org.junit.Test public 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); } @EqualsAndHashCode(callSuper = true) @Data public static class TableHeaderExcelProperty extends BaseRowModel { @ExcelProperty(value = "姓名", index = 0) private String name; @ExcelProperty(value = "年龄",index = 1) private int age; @ExcelProperty(value = "学校",index = 2) private String school; } }

作者 | 冲奶粉的奶爸

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

  • 国家拟取消的职业技能资格(我国拟修订职业教育法)
  • 2024-11-22我国拟修订职业教育法中新网北京4月18日电(记者梁晓辉张素)职业教育法修订草案18日提请全国人大常委会会议三次审议其中提出,“事业单位公开招聘中有职业技能等级要求的岗位,可以适当降低学历要求”为提升职业教育社会认可度,营。
  • 几乎零差评的5部美剧(这部被捧上神坛的美剧)
  • 2024-11-22这部被捧上神坛的美剧当《绝命毒师》完结的那一刻,剧迷的心情是痛并快乐的快乐的是,漫漫追剧旅途,已到终点,大结局给力,神剧也善始善终痛苦的是,神剧之后还会有续集吗?众所周知,《绝命毒师》共有五季,均分都不低于9分五季浑然一。
  • 连续乏力三周(每次半小时以上很得意)
  • 2024-11-22每次半小时以上很得意果妞每次聊到男人时间问题,果妞就做好准备静静地看评论区齐刷刷一片浮夸,半小时、一小时甚至更久的都有究竟是不是越持越好呢?大多数性学家达成共识,最理想的性爱持续时间在10分钟左右根据研究,一两分钟太短,。
  • 回不去了(回不去的过去)
  • 2024-11-22回不去的过去所有回不去的过去,都无需再去眷恋了,也无需再去懊恼,如果一切可以重来,那么重来还是原来,根本改变不了结局,能改变的只有现在,现在是什么样,未来就注定是什么样,从现在起,每改掉过去的一个毛病,就是一种进。
  • 和平友谊爱音乐会(和平友谊的盛会)
  • 2024-11-22和平友谊的盛会指出,在筹办举办过程中,国际奥委会、国际残奥委会以及奥林匹克大家庭、残奥大家庭成员对我们的工作给予了积极帮助,各国政府和人民、国际友好人士给予了大力支持,许多国家领导人、国际组织负责人亲自来华出席有关。
  • 二战德军平均身高(日本的又是多少)
  • 2024-11-22日本的又是多少二战初始阶段德军平均身高172,党卫军175,德国人平均身高171二战初始阶段日军平均身高160~165,日本男性平均身高160当然随着战况吃紧,兵源紧缺,各国都开始降低自己的征兵基准线,其中日本甚至。
  • sd卡数据全部删除了怎么恢复(内存卡数据删除了怎么恢复)
  • 2024-11-22内存卡数据删除了怎么恢复sd卡就是常见的内存卡,它作为数据的存储设备之一,通常用来保存照片、音频、视频等数据但是因为误删除或者格式化原因把里面的数据删除了怎么办?让小编来告诉你sd卡数据恢复的方法,无须再为sd卡数据丢失而烦。
  • 秋季百香果管理(百香果如何管理)
  • 2024-11-22百香果如何管理百香果又叫鸡蛋果、洋石榴、紫果西番莲和藤石榴,是西番莲科西番莲属草质藤本植物,原产于大小安的列斯群岛,现在我国广东、海南、云南、台湾、福建有栽培百香果被称为水果中的维生素之王,含有17种氨基酸和丰富的。
  • 天猫618奶粉测评(618天猫奶粉品牌预售TOP20)
  • 2024-11-22618天猫奶粉品牌预售TOP20来源:奶粉产业评论火热的年终大促开战了!2020年上半年线上销售的增速是非常快的,各路购物节,各种优惠打折活动,几乎从快递恢复正常运作后就没间断过但618的火热程度并没有因为上半年活动的频繁而变得温和。
  • 考驾照理论考试有什么技巧吗 驾照考试轻松一把过
  • 2024-11-22考驾照理论考试有什么技巧吗 驾照考试轻松一把过之前总听别人说考驾照很麻烦,但是自己考的时候却非常顺利我11月初考科目一,科目一二三四全都一把过,12月29号考完科目四当天拿证如果不是因为约考时间限制和学时要求,可能一个月就够了学驾照的时候很难找到。