当前位置:   article > 正文

EasyPoi(excel导入导出)_easypoi @excelignore

easypoi @excelignore

一,依赖包:

  1. <dependency>
  2. <groupId>cn.afterturn</groupId>
  3. <artifactId>easypoi-spring-boot-starter</artifactId>
  4. <version>4.1.3</version>
  5. </dependency>

二,官网文档

1. 前言 - Powered by MinDoc

三,基础注解

###注解介绍

easypoi起因就是Excel的导入导出,最初的模板是实体和Excel的对应,model–row,filed–col 这样利用注解我们可以和容易做到excel到导入导出
经过一段时间发展,现在注解有5个类分别是

  • @Excel 作用到filed上面,是对Excel一列的一个描述
  • @ExcelCollection 表示一个集合,主要针对一对多的导出,比如一个老师对应多个科目,科目就可以用集合表示
  • @ExcelEntity 表示一个继续深入导出的实体,但他没有太多的实际意义,只是告诉系统这个对象里面同样有导出的字段
  • @ExcelIgnore 和名字一样表示这个字段被忽略跳过这个导导出
  • @ExcelTarget 这个是作用于最外层的对象,描述这个对象的id,以便支持一个对象可以针对不同导出做出不同处理

注解中的ID的用法
这个ID算是一个比较独特的例子,比如

  1. @ExcelTarget("teacherEntity")
  2. public class TeacherEntity implements java.io.Serializable {
  3. /** name */
  4. @Excel(name = "主讲老师_teacherEntity,代课老师_absent", orderNum = "1", mergeVertical = true,needMerge=true,isImportField = "true_major,true_absent")
  5. private String name;

这里的@ExcelTarget 表示使用teacherEntity这个对象是可以针对不同字段做不同处理
同样的ExcelEntity 和ExcelCollection 都支持这种方式
当导出这对象时,name这一列对应的是主讲老师,而不是代课老师还有很多字段都支持这种做法

###@Excel

这个是必须使用的注解,如果需求简单只使用这一个注解也是可以的,涵盖了常用的Excel需求,需要大家熟悉这个功能,主要分为基础,图片处理,时间处理,合并处理几块,name_id是上面讲的id用法,这里就不累言了

属性

类型

默认值

功能

name

String

null

列名,支持name_id

needMerge

boolean

fasle

是否需要纵向合并单元格(用于含有list中,单个的单元格,合并list创建的多个row)

orderNum

String

“0”

列的排序,支持name_id

replace

String[]

{}

值得替换 导出是{a_id,b_id} 导入反过来

savePath

String

“upload”

导入文件保存路径,如果是图片可以填写,默认是upload/className/ IconEntity这个类对应的就是upload/Icon/

type

int

1

导出类型 1 是文本 2 是图片,3 是函数,10 是数字 默认是文本

width

double

10

列宽

height

double

10

列高,后期打算统一使用@ExcelTarget

的height,这个会被废弃,注意

isStatistics

boolean

fasle

自动统计数据,在追加一行统计,把所有数据都和输出[这个处理会吞没异常,请注意这一点]

isHyperlink

boolean

false

超链接,如果是需要实现接口返回对象

isImportField

boolean

true

校验字段,看看这个字段是不是导入的Excel中有,如果没有说明是错误的Excel,读取失败,支持name_id

exportFormat

String

“”

导出的时间格式,以这个是否为空来判断是否需要格式化日期

importFormat

String

“”

导入的时间格式,以这个是否为空来判断是否需要格式化日期

format

String

“”

时间格式,相当于同时设置了exportFormat 和 importFormat

databaseFormat

String

“yyyyMMddHHmmss”

导出时间设置,如果字段是Date类型则不需要设置 数据库如果是string 类型,这个需要设置这个数据库格式,用以转换时间格式输出

numFormat

String

“”

数字格式化,参数是Pattern,使用的对象是DecimalFormat

imageType

int

1

导出类型 1 从file读取 2 是从数据库中读取 默认是文件 同样导入也是一样的

suffix

String

“”

文字后缀,如% 90 变成90%

isWrap

boolean

true

是否换行 即支持\n

mergeRely

int[]

{}

合并单元格依赖关系,比如第二列合并是基于第一列 则{0}就可以了

mergeVertical

boolean

fasle

纵向合并内容相同的单元格

fixedIndex

int

-1

对应excel的列,忽略名字

isColumnHidden

boolean

false

导出隐藏列

###@ExcelCollection

一对多的集合注解,用以标记集合是否被数据以及集合的整体排序

属性

类型

默认值

功能

id

String

null

定义ID

name

String

null

定义集合列名,支持nanm_id

orderNum

int

0

排序,支持name_id

type

Class<?>

ArrayList.class

导入时创建对象使用

###@ExcelEntity

标记是不是导出excel 标记为实体类,一遍是一个内部属性类,标记是否继续穿透,可以自定义内部id

属性

类型

默认值

功能

id

String

null

定义ID

###@ExcelIgnore

忽略这个属性,多使用需循环引用中,无需多解释吧^^

###@ExcelTarget

限定一个到处实体的注解,以及一些通用设置,作用于最外面的实体
属性 | 类型 | 默认值 | 功能
———|——–|——–|——-
value | String | null | 定义ID
height | double | 10 | 设置行高
fontSize | short | 11 | 设置文字大小

四,代码的实现

导出数据

实体类:

  1. package com.example.yebsever.domain.dto.easyPoi;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import cn.afterturn.easypoi.excel.annotation.ExcelIgnore;
  4. import cn.afterturn.easypoi.excel.annotation.ExcelTarget;
  5. import com.baomidou.mybatisplus.annotation.IdType;
  6. import com.baomidou.mybatisplus.annotation.TableId;
  7. import lombok.Data;
  8. @Data
  9. @ExcelTarget("easyPoi")
  10. public class EasyPoi {
  11. @ExcelIgnore
  12. @TableId(type = IdType.AUTO)
  13. private Integer id;
  14. /**
  15. * 学生名称
  16. */
  17. @Excel(name = "学生名称")
  18. private String studentName;
  19. /**
  20. * 0-男 1-女
  21. */
  22. private Integer studentSex;
  23. @Excel(name = "性别")
  24. private String studentSexName;
  25. /**
  26. * 图片
  27. */
  28. @Excel(name = "头像",type =2 ,savePath="upload/Icon/")
  29. private String img;
  30. }

注意:type:2 表示导出是图片 savePath:默认为upload/className/就行,图片就可以导出了

控制层:

  1. /***
  2. *导出数据
  3. * produces:以流的形式导出
  4. * 导出是响应出去
  5. */
  6. @ApiOperation(value = "导出数据")
  7. @GetMapping(value = "exportData",produces = "application/octet-stream")
  8. public void exportData(HttpServletResponse response){
  9. //1.查询导出信息
  10. List<EasyPoi> easyPoisList=testService.exportData();
  11. easyPoisList.stream().forEach(s->{
  12. if (s.getStudentSex().equals(1)){
  13. s.setStudentSexName("女");
  14. }else {
  15. s.setStudentSexName("男");
  16. }
  17. });
  18. log.info("数据:{}",easyPoisList);
  19. //2.导出
  20. ExportParams params = new ExportParams("学生信息表","学生信息表", ExcelType.XSSF);
  21. Workbook sheets = ExcelExportUtil.exportExcel(params, EasyPoi.class, easyPoisList);
  22. log.info("sheets结果:{}",sheets);
  23. ServletOutputStream outputStream =null;
  24. try {
  25. //头部信息
  26. response.setHeader("content-disposition", "attachment;filename="+
  27. URLEncoder.encode("学生信息表.xlsx", "UTF-8"));
  28. response.setHeader("content-type", "application/octet-stream");
  29. //输出字节流
  30. outputStream=response.getOutputStream();
  31. sheets.write(outputStream);
  32. } catch (IOException e) {
  33. throw new RuntimeException(e);
  34. }finally {
  35. if (null!=outputStream){
  36. try {
  37. //关闭流
  38. outputStream.close();
  39. } catch (IOException e) {
  40. throw new RuntimeException(e);
  41. }
  42. }
  43. }
  44. }

导入数据

实体类:

  1. package com.example.yebsever.domain;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.TableField;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.io.Serializable;
  8. import lombok.Data;
  9. /**
  10. * 测试
  11. * @TableName test
  12. */
  13. @TableName(value ="test")
  14. @Data
  15. public class Test implements Serializable {
  16. /**
  17. *
  18. */
  19. @TableId(type = IdType.AUTO)
  20. private Integer id;
  21. /**
  22. * 学生名称
  23. */
  24. @Excel(name = "学生名称")
  25. private String studentName;
  26. /**
  27. * 0-男 1-女
  28. */
  29. private Integer studentSex;
  30. @Excel(name = "性别")
  31. @TableField(exist = false)
  32. private String studentSexName;
  33. /**
  34. * 图片
  35. */
  36. @Excel(name = "头像",type =2 ,savePath="D:\\student")
  37. private String img;
  38. @TableField(exist = false)
  39. private static final long serialVersionUID = 1L;
  40. }

注意:savePath:可以设为本地路径储存到本地

控制层

  1. /**
  2. * 导入数据
  3. */
  4. @PostMapping("importData")
  5. @ApiOperation(value = "导入数据")
  6. public void importData(MultipartFile file){
  7. //导入
  8. ImportParams params = new ImportParams();
  9. //去掉标题行
  10. params.setTitleRows(1);
  11. try {
  12. List<Test> easyPoisList= ExcelImportUtil.importExcel(file.getInputStream(), Test.class, params);
  13. /**
  14. *如果不想存在本地,就在这里自己添加方法
  15. **/
  16. log.info("数据结果:{}",easyPoisList);
  17. easyPoisList.stream().forEach(s->{
  18. if ("男".equals(s.getStudentName())){
  19. s.setStudentSex(0);
  20. }else {
  21. s.setStudentSex(1);
  22. }
  23. });
  24. testService.saveBatch(easyPoisList);
  25. } catch (Exception e) {
  26. throw new RuntimeException(e);
  27. }
  28. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/540323
推荐阅读
相关标签
  

闽ICP备14008679号