服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - Java操作excel的三种常见方法实例

Java操作excel的三种常见方法实例

2021-09-02 12:43经理,天台风好大 Java教程

这篇文章主要给大家介绍了关于Java操作excel的三种常见方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

前言

在平时的业务系统开发中,少不了需要用到导出、导入excel功能,今天我们就一起来总结一下!

下面给大家介绍一下几种常用方法:

一、Apache poi

大概在很久很久以前,微软的电子表格软件 Excel 以操作简单、存储数据直观方便,还支持打印报表,在诞生之初,可谓深得办公室里的白领青睐,极大的提升了工作的效率,不久之后,便成了办公室里的必备工具。

随着更多的新语言的崛起,例如我们所熟悉的 java,后来便有一些团队开始开发一套能与 Excel 软件无缝切换的操作工具!

当然,在java生态体系里面,能与Excel无缝衔接的第三方工具还有很多,在开始也给大家列出来三个,因为 apache poi 在业界使用的最广泛,因此其他的工具不做过多介绍!

话不多说,直接开撸!

1.1 首先添加依赖

  1. <dependencies>
  2. <!--xls(03)-->
  3. <dependency>
  4. <groupId>org.apache.poi</groupId>
  5. <artifactId>poi</artifactId>
  6. <version>4.1.2</version>
  7. </dependency>
  8. <!--xlsx(07)-->
  9. <dependency>
  10. <groupId>org.apache.poi</groupId>
  11. <artifactId>poi-ooxml</artifactId>
  12. <version>4.1.2</version>
  13. </dependency>
  14. <!--时间格式化工具-->
  15. <dependency>
  16. <groupId>joda-time</groupId>
  17. <artifactId>joda-time</artifactId>
  18. <version>2.10.6</version>
  19. </dependency>
  20. </dependencies>

1.2 导出excel

导出操作,即使用 Java 写出数据到 Excel 中,常见场景是将页面上的数据导出,这些数据可能是财务数据,也可能是商品数据,生成 Excel 后返回给用户下载文件。

在 poi 工具库中,导出 api 可以分三种方式

  • HSSF方式: 这种方式导出的文件格式为office 2003专用格式,即.xls,优点是导出数据速度快,但是 最多65536行 数据
  • XSSF方式: 这种方式导出的文件格式为office 2007专用格式,即.xlsx,优点是导出的数据不受行数限制,缺点导出速度慢
  • SXSSF方式: SXSSF 是 XSSF API的兼容流式扩展,主要解决当使用 XSSF 方式导出大数据量时,内存溢出的问题,支持导出大批量的excel数据

1.2.1 HSSF方式导出(.xls方式)

HSSF方式,最多只支持65536条数据导出,超过这个条数会报错!

  1. package cn.tedu.excel.test;
  2.  
  3. import org.apache.poi.hssf.usermodel.HSSFWorkbook;
  4. import org.apache.poi.ss.usermodel.Cell;
  5. import org.apache.poi.ss.usermodel.Row;
  6. import org.apache.poi.ss.usermodel.Sheet;
  7. import org.apache.poi.ss.usermodel.Workbook;
  8.  
  9. import java.io.FileOutputStream;
  10.  
  11. /**
  12. * HSSF方式导出:HSSF方式,最多只支持65536条数据导出,超过这个条数会报错!
  13. * 就是.xls模式
  14. */
  15. public class ExcelWrite2003Test {
  16. private static String PATH = "/Users/lixin/Desktop/";//自己输出的路径
  17.  
  18. public static void main(String[] args) throws Exception {
  19. //时间
  20. long begin = System.currentTimeMillis();
  21.  
  22. //创建一个工作簿
  23. Workbook workbook = new HSSFWorkbook();
  24. //创建表
  25. Sheet sheet = workbook.createSheet();
  26. //写入数据
  27. for (int rowNumber = 0; rowNumber < 65536; rowNumber++) {
  28. //创建行
  29. Row row = sheet.createRow(rowNumber);
  30. for (int cellNumber = 0; cellNumber < 10; cellNumber++) {
  31. //创建列
  32. Cell cell = row.createCell(cellNumber);
  33. cell.setCellValue(cellNumber);
  34. }
  35. }
  36. System.out.println("结束!");
  37. FileOutputStream fileOutputStream = new FileOutputStream(PATH + "用户信息表-XLS.xls");
  38. workbook.write(fileOutputStream);
  39. fileOutputStream.close();
  40. long end = System.currentTimeMillis();
  41. System.out.println("时间为:"+(double) (end - begin) / 1000);//2.262s
  42. }
  43. }

1.2.2 XSSF方式导出(.xlsx)

XSSF方式支持大批量数据导出,所有的数据先写入内存再导出,容易出现内存溢出!

  1. package cn.tedu.excel.test;
  2.  
  3. import org.apache.poi.ss.usermodel.Cell;
  4. import org.apache.poi.ss.usermodel.Row;
  5. import org.apache.poi.ss.usermodel.Sheet;
  6. import org.apache.poi.ss.usermodel.Workbook;
  7. import org.apache.poi.xssf.usermodel.XSSFWorkbook;
  8.  
  9. import java.io.FileOutputStream;
  10.  
  11. /**
  12. * .xlsx方式
  13. */
  14. public class ExcelWrite2007Test {
  15. public static String PATH = "/Users/lixin/Desktop/";
  16.  
  17. public static void main(String[] args) throws Exception {
  18. //时间
  19. long begin = System.currentTimeMillis();
  20.  
  21. //创建一个工作簿
  22. Workbook workbook = new XSSFWorkbook();
  23. //创建表
  24. Sheet sheet = workbook.createSheet();
  25. //写入数据
  26. for (int rowNumber = 0; rowNumber < 65537; rowNumber++) {
  27. Row row = sheet.createRow(rowNumber);
  28. for (int cellNumber = 0; cellNumber < 10; cellNumber++) {
  29. Cell cell = row.createCell(cellNumber);
  30. cell.setCellValue(cellNumber);
  31. }
  32. }
  33. System.out.println("结束");
  34.  
  35. FileOutputStream fileOutputStream = new FileOutputStream(PATH + "用户信息表-XLSX.xlsx");
  36. workbook.write(fileOutputStream);
  37. fileOutputStream.close();
  38. long end = System.currentTimeMillis();
  39. System.out.println((double) (end - begin) / 1000);//5.003s
  40. }
  41. }

1.2.3、SXSSF方式导出

SXSSF方式是XSSF方式的一种延伸,主要特性是低内存,导出的时候,先将数据写入磁盘再导出,避免报内存不足,导致程序运行异常,缺点是运行很慢!

  1. package cn.tedu.excel.test;
  2.  
  3. import org.apache.poi.ss.usermodel.Cell;
  4. import org.apache.poi.ss.usermodel.Row;
  5. import org.apache.poi.ss.usermodel.Sheet;
  6. import org.apache.poi.ss.usermodel.Workbook;
  7. import org.apache.poi.xssf.streaming.SXSSFWorkbook;
  8.  
  9. import java.io.FileOutputStream;
  10.  
  11. public class ExcelWriteSXSSFTest {
  12. public static String PATH = "/Users/lixin/Desktop/";
  13.  
  14. public static void main(String[] args) throws Exception {
  15. //时间
  16. long begin = System.currentTimeMillis();
  17.  
  18. //创建一个工作簿
  19. Workbook workbook = new SXSSFWorkbook();
  20.  
  21. //创建表
  22. Sheet sheet = workbook.createSheet();
  23.  
  24. //写入数据
  25. for (int rowNumber = 0; rowNumber < 100000; rowNumber++) {
  26. Row row = sheet.createRow(rowNumber);
  27. for (int cellNumber = 0; cellNumber < 10; cellNumber++) {
  28. Cell cell = row.createCell(cellNumber);
  29. cell.setCellValue(cellNumber);
  30. }
  31. }
  32. System.out.println("over");
  33.  
  34. FileOutputStream fileOutputStream = new FileOutputStream(PATH + "用户信息表-SXSSF.xlsx");
  35. workbook.write(fileOutputStream);
  36. fileOutputStream.close();
  37. long end = System.currentTimeMillis();
  38. System.out.println((double) (end - begin) / 1000);//6.39s
  39. }
  40. }

1.3 导入excel

导入操作,即将 excel 中的数据采用java工具库将其解析出来,进而将 excel 数据写入数据库!

同样,在 poi 工具库中,导入 api 也分三种方式,与上面的导出一一对应!

1.3.1 HSSF方式导入

  1. package cn.tedu.excel.test;
  2.  
  3. import org.apache.poi.hssf.usermodel.HSSFDateUtil;
  4. import org.apache.poi.hssf.usermodel.HSSFWorkbook;
  5. import org.apache.poi.ss.usermodel.*;
  6. import org.joda.time.DateTime;
  7.  
  8. import java.io.FileInputStream;
  9. import java.util.Date;
  10.  
  11. public class ExcelRead2003Test {
  12. public static String PATH = "/Users/lixin/Desktop/";
  13.  
  14. public static void main(String[] args) throws Exception {
  15. //获取文件流
  16. FileInputStream inputStream = new FileInputStream(PATH + "用户信息表2003read.xls");
  17.  
  18. //1.创建工作簿,使用excel能操作的这边都看看操作
  19. Workbook workbook = new HSSFWorkbook(inputStream);
  20. //2.得到表
  21. Sheet sheet = workbook.getSheetAt(0);
  22. //3.得到行
  23. Row row = sheet.getRow(0);
  24. //4.得到列
  25. Cell cell = row.getCell(0);
  26. getValue(cell);
  27. inputStream.close();
  28. }
  29.  
  30. public static void getValue(Cell cell){
  31. //匹配类型数据
  32. if (cell != null) {
  33. CellType cellType = cell.getCellType();
  34. String cellValue = "";
  35. switch (cellType) {
  36. case STRING: //字符串
  37. System.out.print("[String类型]");
  38. cellValue = cell.getStringCellValue();
  39. break;
  40. case BOOLEAN: //布尔类型
  41. System.out.print("[boolean类型]");
  42. cellValue = String.valueOf(cell.getBooleanCellValue());
  43. break;
  44. case BLANK: //空
  45. System.out.print("[BLANK类型]");
  46. break;
  47. case NUMERIC: //数字(日期、普通数字)
  48. System.out.print("[NUMERIC类型]");
  49. if (HSSFDateUtil.isCellDateFormatted(cell)) { //日期
  50. System.out.print("[日期]");
  51. Date date = cell.getDateCellValue();
  52. cellValue = new DateTime(date).toString("yyyy-MM-dd");
  53. } else {
  54. //不是日期格式,防止数字过长
  55. System.out.print("[转换为字符串输出]");
  56. cell.setCellType(CellType.STRING);
  57. cellValue = cell.toString();
  58. }
  59. break;
  60. case ERROR:
  61. System.out.print("[数据类型错误]");
  62. break;
  63. }
  64. System.out.println(cellValue);
  65. }
  66. }
  67. }

输出结果类似如图所示:

Java操作excel的三种常见方法实例

1.3.2 XSSF方式导入

  1. package cn.tedu.excel.test;
  2.  
  3. import org.apache.poi.hssf.usermodel.HSSFDateUtil;
  4. import org.apache.poi.ss.usermodel.*;
  5. import org.apache.poi.xssf.usermodel.XSSFWorkbook;
  6. import org.joda.time.DateTime;
  7.  
  8. import java.io.FileInputStream;
  9. import java.util.Date;
  10.  
  11. public class ExcelRead2007Test {
  12. public static String PATH = "/Users/lixin/Desktop/";
  13.  
  14. public static void main(String[] args) throws Exception {
  15. //获取文件流
  16. FileInputStream inputStream = new FileInputStream(PATH + "用户信息表2007read.xlsx");
  17.  
  18. //1.创建工作簿,使用excel能操作的这边都看看操作
  19. Workbook workbook = new XSSFWorkbook(inputStream);
  20. //2.得到表
  21. Sheet sheet = workbook.getSheetAt(0);
  22. //3.得到行
  23. Row row = sheet.getRow(0);
  24. //4.得到列
  25. Cell cell = row.getCell(0);
  26. getValue(cell);
  27. inputStream.close();
  28. }
  29. public static void getValue(Cell cell){
  30. //匹配类型数据
  31. if (cell != null) {
  32. CellType cellType = cell.getCellType();
  33. String cellValue = "";
  34. switch (cellType) {
  35. case STRING: //字符串
  36. System.out.print("[String类型]");
  37. cellValue = cell.getStringCellValue();
  38. break;
  39. case BOOLEAN: //布尔类型
  40. System.out.print("[boolean类型]");
  41. cellValue = String.valueOf(cell.getBooleanCellValue());
  42. break;
  43. case BLANK: //空
  44. System.out.print("[BLANK类型]");
  45. break;
  46. case NUMERIC: //数字(日期、普通数字)
  47. System.out.print("[NUMERIC类型]");
  48. if (HSSFDateUtil.isCellDateFormatted(cell)) { //日期
  49. System.out.print("[日期]");
  50. Date date = cell.getDateCellValue();
  51. cellValue = new DateTime(date).toString("yyyy-MM-dd");
  52. } else {
  53. //不是日期格式,防止数字过长
  54. System.out.print("[转换为字符串输出]");
  55. cell.setCellType(CellType.STRING);
  56. cellValue = cell.toString();
  57. }
  58. break;
  59. case ERROR:
  60. System.out.print("[数据类型错误]");
  61. break;
  62. }
  63. System.out.println(cellValue);
  64. }
  65. }
  66. }

1.3.3 SXSSF方式导入

  1. package cn.tedu.excel.test;
  2.  
  3. import org.apache.poi.ooxml.util.SAXHelper;
  4. import org.apache.poi.openxml4j.opc.OPCPackage;
  5. import org.apache.poi.xssf.eventusermodel.ReadOnlySharedStringsTable;
  6. import org.apache.poi.xssf.eventusermodel.XSSFReader;
  7. import org.apache.poi.xssf.eventusermodel.XSSFSheetXMLHandler;
  8. import org.apache.poi.xssf.model.StylesTable;
  9. import org.apache.poi.xssf.usermodel.XSSFComment;
  10. import org.xml.sax.InputSource;
  11. import org.xml.sax.XMLReader;
  12.  
  13. import java.io.InputStream;
  14. import java.util.ArrayList;
  15. import java.util.Iterator;
  16. import java.util.List;
  17. import java.util.stream.Collectors;
  18.  
  19. public class ExcelReadSXSSFTest {
  20. public static String PATH = "/Users/lixin/Desktop/";
  21.  
  22. public static void main(String[] args) throws Exception {
  23. //获取文件流
  24.  
  25. //1.创建工作簿,使用excel能操作的这边都看看操作
  26. OPCPackage opcPackage = OPCPackage.open(PATH + "用户信息表2007read.xlsx");
  27. XSSFReader xssfReader = new XSSFReader(opcPackage);
  28. StylesTable stylesTable = xssfReader.getStylesTable();
  29. ReadOnlySharedStringsTable sharedStringsTable = new ReadOnlySharedStringsTable(opcPackage);
  30. // 创建XMLReader,设置ContentHandler
  31. XMLReader xmlReader = SAXHelper.newXMLReader();
  32. xmlReader.setContentHandler(new XSSFSheetXMLHandler(stylesTable, sharedStringsTable, new SimpleSheetContentsHandler(), false));
  33. // 解析每个Sheet数据
  34. Iterator<InputStream> sheetsData = xssfReader.getSheetsData();
  35. while (sheetsData.hasNext()) {
  36. try (InputStream inputStream = sheetsData.next();) {
  37. xmlReader.parse(new InputSource(inputStream));
  38. }
  39. }
  40. }
  41. /**
  42. * 内容处理器
  43. */
  44. public static class SimpleSheetContentsHandler implements XSSFSheetXMLHandler.SheetContentsHandler {
  45.  
  46. protected List<String> row;
  47.  
  48. @Override
  49. public void startRow(int rowNum) {
  50. row = new ArrayList<>();
  51. }
  52.  
  53. @Override
  54. public void endRow(int rowNum) {
  55. if (row.isEmpty()) {
  56. return;
  57. }
  58. // 处理数据
  59. System.out.println(row.stream().collect(Collectors.joining(" ")));
  60. }
  61.  
  62. @Override
  63. public void cell(String cellReference, String formattedValue, XSSFComment comment) {
  64. row.add(formattedValue);
  65. }
  66.  
  67. @Override
  68. public void headerFooter(String text, boolean isHeader, String tagName) {
  69. }
  70. }
  71. }

Java操作excel的三种常见方法实例

二、Easypoi

以前的以前,有个大佬程序员,跳到一家公司之后就和业务人员聊上了,这些业务员对excel报表有着许许多多的要求,比如想要一个报表,他的表头是一个多行表头,过几天之后,他想要给这些表头添加样式,比如关键的数据标红,再过几天,他想要再末尾添加一条合计的数据,等等!

起初还好,都是copy、copy,之后发现系统中出现大量的重复代码,于是有一天真的忍受不了了,采用注解搞定来搞定这些定制化成程度高的逻辑,将公共化抽离出来,于是诞生了 easypoi!它的底层也是基于 apache poi 进行深度开发的,它主要的特点就是将更多重复的工作,全部简单化,避免编写重复的代码!

下面,我们就一起来了解一下这款高大上的开源工具:easypoi

2.1 添加依赖包

  1. <dependencies>
  2. <dependency>
  3. <groupId>cn.afterturn</groupId>
  4. <artifactId>easypoi-base</artifactId>
  5. <version>4.1.0</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>cn.afterturn</groupId>
  9. <artifactId>easypoi-web</artifactId>
  10. <version>4.1.0</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>cn.afterturn</groupId>
  14. <artifactId>easypoi-annotation</artifactId>
  15. <version>4.1.0</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.googlecode.json-simple</groupId>
  19. <artifactId>json-simple</artifactId>
  20. <version>1.1.1</version>
  21. </dependency>
  22. </dependencies>

2.2 采用注解导出导入

easypoi 最大的亮点就是基于注解实体类来导出、导入excel,使用起来非常简单!

我们创建一个实体类UserEntity,其中@Excel注解表示导出文件的头部信息。

添加Lombok插件,替代set和get方法

2.2.1 导出操作

  1. package cn.tedu.excel.easypoi;
  2.  
  3. import cn.afterturn.easypoi.excel.ExcelExportUtil;
  4. import cn.afterturn.easypoi.excel.annotation.Excel;
  5. import cn.afterturn.easypoi.excel.entity.ExportParams;
  6. import lombok.AllArgsConstructor;
  7. import lombok.Data;
  8. import lombok.NoArgsConstructor;
  9. import org.apache.poi.ss.usermodel.Workbook;
  10.  
  11. import java.io.FileOutputStream;
  12. import java.util.ArrayList;
  13. import java.util.Date;
  14. import java.util.List;
  15.  
  16. @Data
  17. @NoArgsConstructor
  18. @AllArgsConstructor
  19. public class UserEntity {
  20. @Excel(name = "姓名")
  21. private String name;
  22. @Excel(name = "年龄")
  23. private int age;
  24. @Excel(name = "操作时间",format="yyyy-MM-dd HH:mm:ss", width = 20.0)
  25. private Date time;
  26.  
  27. public static void main(String[] args) throws Exception {
  28. List<UserEntity> dataList = new ArrayList<>();
  29. for (int i = 0; i < 10; i++) {
  30. UserEntity userEntity = new UserEntity();
  31. userEntity.setName("张三" + i);
  32. userEntity.setAge(20 + i);
  33. userEntity.setTime(new Date(System.currentTimeMillis() + i));
  34. dataList.add(userEntity);
  35. }
  36. //生成excel文档
  37. Workbook workbook = ExcelExportUtil.exportExcel(new ExportParams("用户","用户信息"),
  38. UserEntity.class, dataList);
  39. FileOutputStream fos = new FileOutputStream("/Users/lixin/Desktop/easypoi-user.xls");
  40. workbook.write(fos);
  41. fos.close();
  42. }
  43. }

导出文件预览图如下:

Java操作excel的三种常见方法实例

2.2.2 导入操作

  1. package cn.tedu.excel.easypoi;
  2.  
  3. import cn.afterturn.easypoi.excel.ExcelImportUtil;
  4. import cn.afterturn.easypoi.excel.annotation.Excel;
  5. import cn.afterturn.easypoi.excel.entity.ImportParams;
  6. import lombok.AllArgsConstructor;
  7. import lombok.Data;
  8. import lombok.NoArgsConstructor;
  9.  
  10. import java.io.File;
  11. import java.util.Date;
  12. import java.util.List;
  13. import org.json.simple.JSONArray;
  14.  
  15. @Data
  16. @NoArgsConstructor
  17. @AllArgsConstructor
  18. public class StudentEntity {
  19. @Excel(name = "姓名")
  20. private String name;
  21. @Excel(name = "年龄")
  22. private int age;
  23. @Excel(name = "操作时间",format="yyyy-MM-dd HH:mm:ss", width = 20.0)
  24. private Date time;
  25.  
  26. public static void main(String[] args) {
  27. ImportParams params = new ImportParams();
  28. params.setTitleRows(1);
  29. params.setHeadRows(1);
  30. long start = new Date().getTime();
  31. List<StudentEntity> list = ExcelImportUtil.importExcel(new File("/Users/lixin/Desktop/easypoi-user1.xls"),
  32. UserEntity.class, params);
  33. System.out.println(new Date().getTime() - start);
  34. System.out.println(JSONArray.toJSONString(list));
  35. }
  36. }

输出结果为:

[UserEntity(name=张三0, age=20, time=Mon Mar 29 11:29:52 CST 2021),UserEntity(name=李四, age=21, time=Mon Mar 29 11:29:52 CST 2021),UserEntity(name=王武, age=22, time=Mon Mar 29 11:29:52 CST 2021),UserEntity(name=赵六, age=23, time=Mon Mar 29 11:29:52 CST 2021),UserEntity(name=null, age=0, time=null),UserEntity(name=null, age=0, time=null),UserEntity(name=null, age=0, time=null),UserEntity(name=null, age=0, time=null),UserEntity(name=null, age=0, time=null),UserEntity(name=null, age=0, time=null)]

2.3 自定义数据结构导出导入

easypoi 同样也支持自定义数据结构导出导入excel。

自定义数据导出 excel

2.3.1 导出操作

  1. public static void main(String[] args) throws Exception {
  2. //封装表头
  3. List<ExcelExportEntity> entityList = new ArrayList<ExcelExportEntity>();
  4. entityList.add(new ExcelExportEntity("姓名", "name"));
  5. entityList.add(new ExcelExportEntity("年龄", "age"));
  6. ExcelExportEntity entityTime = new ExcelExportEntity("操作时间", "time");
  7. entityTime.setFormat("yyyy-MM-dd HH:mm:ss");
  8. entityTime.setWidth(20.0);
  9. entityList.add(entityTime);
  10. //封装数据体
  11. List<Map<String, Object>> dataList = new ArrayList<>();
  12. for (int i = 0; i < 10; i++) {
  13. Map<String, Object> userEntityMap = new HashMap<>();
  14. userEntityMap.put("name", "张三" + i);
  15. userEntityMap.put("age", 20 + i);
  16. userEntityMap.put("time", new Date(System.currentTimeMillis() + i));
  17. dataList.add(userEntityMap);
  18. }
  19. //生成excel文档
  20. Workbook workbook = ExcelExportUtil.exportExcel(new ExportParams("学生","用户信息"), entityList, dataList);
  21. FileOutputStream fos = new FileOutputStream("/Users/lixin/Desktop/easypoi-user2.xls");
  22. workbook.write(fos);
  23. fos.close();
  24. }

2.3.2 导入操作

  1. public static void main(String[] args) {
  2. ImportParams params = new ImportParams();
  3. params.setTitleRows(1);
  4. params.setHeadRows(1);
  5. long start = new Date().getTime();
  6. List<Map<String, Object>> list = ExcelImportUtil.importExcel(new File("/Users/lixin/Desktop/easypoi-user2.xls"),
  7. Map.class, params);
  8. System.out.println(new Date().getTime() - start);
  9. System.out.println(JSONArray.toJSONString(list));
  10. }

更多的 api 操作可以访问 Easypoi - 接口文档

三、Easyexcel

easyexcel 是阿里巴巴开源的一款 excel 解析工具,底层逻辑也是基于 apache poi 进行二次开发的。不同的是,再读写数据的时候,采用 sax 模式一行一行解析,在并发量很大的情况下,依然能稳定运行!

下面,我们就一起来了解一下这款新起之秀!

3.1 添加依赖包

  1. <!-- EasyExcel -->
  2. <dependency>
  3. <groupId>com.alibaba</groupId>
  4. <artifactId>easyexcel</artifactId>
  5. <version>2.2.6</version>
  6. </dependency>
  7. <!--常用工具库-->
  8. <dependency>
  9. <groupId>com.google.guava</groupId>
  10. <artifactId>guava</artifactId>
  11. <version>29.0-jre</version>
  12. </dependency>

3.2 采用注解导出导入

easyexcel 同样也支持采用注解方式进行导出、导入!

首先,我们创建一个实体类UserEntity,其中@ExcelProperty注解表示导出文件的头部信息。

3.2.1 导出操作

  1. package cn.tedu.excel.easyexcel;
  2.  
  3. import com.alibaba.excel.EasyExcel;
  4. import com.alibaba.excel.annotation.ExcelProperty;
  5. import lombok.AllArgsConstructor;
  6. import lombok.Data;
  7. import lombok.NoArgsConstructor;
  8. import org.springframework.format.annotation.DateTimeFormat;
  9.  
  10. import java.util.ArrayList;
  11. import java.util.Date;
  12. import java.util.List;
  13.  
  14. @Data
  15. @NoArgsConstructor
  16. @AllArgsConstructor
  17. public class UserEntity {
  18. @ExcelProperty(value = "姓名")
  19. private String name;
  20.  
  21. @ExcelProperty(value = "年龄")
  22. private int age;
  23.  
  24. @DateTimeFormat(fallbackPatterns = "yyyy-MM-dd HH:mm:ss")
  25. @ExcelProperty(value = "操作时间")
  26. private Date time;
  27.  
  28. public static void main(String[] args) {
  29. List<UserEntity> dataList = new ArrayList<>();
  30. for (int i = 0; i < 10; i++) {
  31. UserEntity userEntity = new UserEntity();
  32. userEntity.setName("张三" + i);
  33. userEntity.setAge(20 + i);
  34. userEntity.setTime(new Date(System.currentTimeMillis() + i));
  35. dataList.add(userEntity);
  36. }
  37. EasyExcel.write("/Users/lixin/Desktop/easyexcel-user1.xls", UserEntity.class).sheet("用户信息").doWrite(dataList);
  38. }
  39. }

导出预览图:

Java操作excel的三种常见方法实例

3.2.2 导入操作

  1. package cn.tedu.excel.easyexcel;
  2.  
  3. import com.alibaba.excel.EasyExcel;
  4. import org.json.simple.JSONArray;
  5.  
  6. import java.util.List;
  7.  
  8. public class DemoData {
  9. public static void main(String[] args) {
  10. String filePath = "/Users/lixin/Desktop/easyexcel-user1.xls";
  11. List<DemoData> list = EasyExcel.read(filePath).head(UserEntity.class).sheet().doReadSync();
  12. System.out.println(JSONArray.toJSONString(list));
  13. }
  14. }

结果显示:

[UserEntity(name=张三0, age=20, time=Mon Mar 29 16:42:20 CST 2021),UserEntity(name=张三1, age=21, time=Mon Mar 29 16:42:20 CST 2021),UserEntity(name=张三2, age=22, time=Mon Mar 29 16:42:20 CST 2021),UserEntity(name=张三3, age=23, time=Mon Mar 29 16:42:20 CST 2021),UserEntity(name=张三4, age=24, time=Mon Mar 29 16:42:20 CST 2021),UserEntity(name=张三5, age=25, time=Mon Mar 29 16:42:20 CST 2021),UserEntity(name=张三6, age=26, time=Mon Mar 29 16:42:20 CST 2021),UserEntity(name=张三7, age=27, time=Mon Mar 29 16:42:20 CST 2021),UserEntity(name=张三8, age=28, time=Mon Mar 29 16:42:20 CST 2021),UserEntity(name=张三9, age=29, time=Mon Mar 29 16:42:20 CST 2021)]

3.3 自定义数据结构导出导入

easyexcel 同样也支持自定义数据结构导出导入excel。

3.3.1 导出操作

  1. public static void main(String[] args) {
  2. //表头
  3. List<List<String>> headList = new ArrayList<>();
  4. headList.add(Lists.newArrayList("姓名"));
  5. headList.add(Lists.newArrayList("年龄"));
  6. headList.add(Lists.newArrayList("操作时间"));
  7.  
  8. //数据体
  9. List<List<Object>> dataList = new ArrayList<>();
  10. for (int i = 0; i < 10; i++) {
  11. List<Object> data = new ArrayList<>();
  12. data.add("张三" + i);
  13. data.add(20 + i);
  14. data.add(new Date(System.currentTimeMillis() + i));
  15. dataList.add(data);
  16. }
  17. EasyExcel.write("/Users/hello/Documents/easyexcel-user2.xls").head(headList).sheet("用户信息").doWrite(dataList);
  18. }

3.3.2 导入操作

  1. public static void main(String[] args) {
  2. String filePath = "/Users/panzhi/Documents/easyexcel-user2.xls";
  3. UserDataListener userDataListener = new UserDataListener();
  4. EasyExcel.read(filePath, userDataListener).sheet().doRead();
  5. System.out.println("表头:" + JSONArray.toJSONString(userDataListener.getHeadList()));
  6. System.out.println("数据体:" + JSONArray.toJSONString(userDataListener.getDataList()));
  7. }

运行结果如图所示:

表头:[{0:"姓名",1:"年龄",2:"操作时间"}]
数据体:[{0:"张三0",1:"20",2:"2021-03-29 16:31:39"},{0:"张三1",1:"21",2:"2021-03-29 16:31:39"},{0:"张三2",1:"22",2:"2021-03-29 16:31:39"},{0:"张三3",1:"23",2:"2021-03-29 16:31:39"},{0:"张三4",1:"24",2:"2021-03-29 16:31:39"},{0:"张三5",1:"25",2:"2021-03-29 16:31:39"},{0:"张三6",1:"26",2:"2021-03-29 16:31:39"},{0:"张三7",1:"27",2:"2021-03-29 16:31:39"},{0:"张三8",1:"28",2:"2021-03-29 16:31:39"},{0:"张三9",1:"29",2:"2021-03-29 16:31:39"}]

更多的 api 操作可以访问 easyexcel - 接口文档!

四、总结

总体来说,Easypoi 和 Easyexcel 都是基于Apache poi进行二次开发的。

不同点在于:

  • Easypoi 在读写数据的时候,优先是先将数据写入内存,优点是读写性能非常高,但是当数据量很大的时候,会出现oom,当然它也提供了 sax 模式的读写方式,需要调用特定的方法实现。
  • Easyexcel 基于sax模式进行读写数据,不会出现oom情况,程序有过高并发场景的验证,因此程序运行比较稳定,相对于 Easypoi 来说,读写性能稍慢!

Easypoi 与 Easyexcel 还有一点区别在于,Easypoi 对定制化的导出支持非常的丰富,如果当前的项目需求,并发量不大、数据量也不大,但是需要导出 excel 的文件样式千差万别,那么我推荐你用 easypoi;反之,使用 easyexcel !

到此这篇关于Java操作excel的三种常见方法的文章就介绍到这了,更多相关Java操作excel内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq1808814025/article/details/115294105

延伸 · 阅读

精彩推荐