导入分为一般导入、sax导入,二者的区别在于sax导入更关注内存,内存使用更少,且sax方式导入功能增强,建议使用sax方式导入(可读取公式值)

1. 一般导入(不支持csv文件导入,支持图片读取)

  1. URL htmlToExcelEampleURL = this.getClass().getResource("/templates/read_example.xlsx");
  2. Path path = Paths.get(htmlToExcelEampleURL.toURI());
  3. // 方式一:全部读取后处理
  4. List<ArtCrowd> result = DefaultExcelReader.of(ArtCrowd.class)
  5. .sheet(0) // 0代表第一个,如果为0,可省略该操作,也可sheet("名称")读取
  6. .rowFilter(row -> row.getRowNum() > 0) // 如无需过滤,可省略该操作,0代表第一行
  7. .beanFilter(ArtCrowd::isDance) // bean过滤
  8. .startSheet(sheet->System.out.println(sheet.getName())) // 在开始读取sheet前执行指定操作
  9. .read(path.toFile());// 可接收inputStream
  10. // 方式二:读取一行处理一行,可自行决定终止条件
  11. // readThen有两种重写接口,返回Boolean型接口允许在返回False情况下直接终止读取
  12. DefaultExcelReader.of(ArtCrowd.class)
  13. .sheet(0) // 0代表第一个,如果为0,可省略该操作,也可sheet("名称")读取
  14. .rowFilter(row -> row.getRowNum() > 0) // 如无需过滤,可省略该操作,0代表第一行
  15. .beanFilter(ArtCrowd::isDance) // bean过滤
  16. .readThen(path.toFile() ,artCrowd -> {System.out.println(artCrowd.getName);});// 可接收inputStream
  17. public class ArtCrowd {
  18. // index代表列索引,从0开始
  19. @ExcelColumn(index = 0)
  20. private String name;
  21. @ExcelColumn(index = 1)
  22. private String age;
  23. @ExcelColumn(index = 2,format="yyyy-MM-dd")
  24. private Date birthday;
  25. }

2.SAX导入(支持csv文件导入)

csv文件导入接口与导入excel接口一致,仅传入文件不同,程序会自动区分,建议使用File方式导入

如需导入为Map,请将导入类设置为SaxExcelReader.of(Map.class),结果为List<Map>,Map实际类型为LinkedHashMap,key值为Cell,value值为String类型内容值

支持无注解导入,即无需@ExcelColumn指定字段对应的列,会按照全字段默认顺序进行导入

  1. URL htmlToExcelEampleURL = this.getClass().getResource("/templates/read_example.xlsx");
  2. Path path = Paths.get(htmlToExcelEampleURL.toURI());
  3. // 方式一:全部读取后处理,SAX模式,避免OOM,建议大量数据使用
  4. List<ArtCrowd> result = SaxExcelReader.of(ArtCrowd.class)
  5. .sheet(0) // 0代表第一个,如果为0,可省略该操作,也可sheet("名称")读取,.csv文件无效
  6. .rowFilter(row -> row.getRowNum() > 0) // 如无需过滤,可省略该操作,0代表第一行
  7. .charset("GBK") // 目前仅.csv文件有效,设置当前文件的编码
  8. .beanFilter(ArtCrowd::isDance) // bean过滤
  9. .read(path.toFile());// 可接收inputStream
  10. // 方式二:读取一行处理一行,可自行决定终止条件,SAX模式,避免OOM,建议大量数据使用
  11. // readThen有两种重写接口,返回Boolean型接口允许在返回False情况下直接终止读取
  12. SaxExcelReader.of(ArtCrowd.class)
  13. .sheet(0) // 0代表第一个,如果为0,可省略该操作,也可sheet("名称")读取,.csv文件无效
  14. .rowFilter(row -> row.getRowNum() > 0) // 如无需过滤,可省略该操作,0代表第一行
  15. .charset("GBK") // 目前仅.csv文件有效,设置当前文件的编码
  16. .beanFilter(ArtCrowd::isDance) // bean过滤
  17. .readThen(path.toFile() ,artCrowd -> {System.out.println(artCrowd.getName);});// 可接收inputStream
  18. public class ArtCrowd {
  19. // index代表列索引,从0开始
  20. @ExcelColumn(index = 0)
  21. private String name;
  22. @ExcelColumn(index = 1)
  23. private String age;
  24. @ExcelColumn(index = 2,format="yyyy-MM-dd")
  25. private Date birthday;
  26. }

可不使用@ExcelColumn注解,如不使用,则使用字段默认顺序读取

导入必须使用注解: @ExcelColumn(index) 按列索引读取 或者 @ExcelColumn(title) 按title读取

对应注解详情请见:注解

操作API请参见 API