IT评测·应用市场-qidao123.com

标题: Easyexcel(1-注解利用) [打印本页]

作者: 尚未崩坏    时间: 2025-3-6 08:16
标题: Easyexcel(1-注解利用)
版本依赖
  1. <dependency>
  2.     <groupId>com.alibaba</groupId>
  3.     <artifactId>easyexcel</artifactId>
  4.     <version>3.3.3</version>
  5. </dependency>
复制代码
@ExcelProperty

指定当前字段对应 excel 中的那一列,可以根据名字或者 Index 去匹配,固然也可以不写。
value

指定属性名
  1. @Data
  2. public class User {
  3.     private Integer userId;
  4.     private String name;
  5.     private String phone;
  6.     private String email;
  7.     private Date createTime;
  8. }
复制代码
  1. @RestController
  2. public class TestController {
  3.     @GetMapping("/test1")
  4.     public void test1(HttpServletResponse response) {
  5.         try {
  6.             response.setContentType("application/vnd.ms-excel");
  7.             response.setCharacterEncoding("utf-8");
  8.             String fileName = URLEncoder.encode("test1", "UTF-8").replaceAll("\\+", "%20");
  9.             response.setHeader("Content-disposition", "attachment;filename" + fileName + ".xls");
  10.             User user = new User();
  11.             user.setUserId(123);
  12.             user.setName("as");
  13.             user.setPhone("15213");
  14.             user.setEmail("5456");
  15.             user.setCreateTime(13213L);
  16.             EasyExcel.write(response.getOutputStream(), User.class)
  17.                     .sheet("test")
  18.                     .doWrite(Arrays.asList(user));
  19.         } catch (Exception e) {
  20.             e.printStackTrace();
  21.         }
  22.     }
  23. }
复制代码

默认情况下,利用类的属性名作为 Excel 的列表,固然也可以利用@ExcelProperty 注解来重新指定属性名称。
  1. @Data
  2. public class User {
  3.     @ExcelProperty(value = "用户Id")
  4.     private Integer userId;
  5.     @ExcelProperty(value = "姓名")
  6.     private String name;
  7.     @ExcelProperty(value = "手机")
  8.     private String phone;
  9.     @ExcelProperty(value = "邮箱")
  10.     private String email;
  11.     @ExcelProperty(value = "创建时间")
  12.     private Date createTime;
  13. }
复制代码

表头合并

value 在写的时候,如果指定了多个值,会自动进行合并
  1. @Data
  2. public class User {
  3.     @ExcelProperty(value = "用户Id")
  4.     private Integer userId;
  5.     @ExcelProperty(value = {"用户基本信息", "姓名"})
  6.     private String name;
  7.     @ExcelProperty(value = {"用户基本信息", "手机"})
  8.     private String phone;
  9.     @ExcelProperty(value = {"用户基本信息", "邮箱"})
  10.     private String email;
  11.     @ExcelProperty(value = "创建时间")
  12.     private Date createTime;
  13. }
复制代码

index

指定位置

@ExcelProperty 注解有两个属性 index 和 order,如果不指定则按照属性在类中的分列顺序来。index 是指定该属性在 Excel 中列的下标,下标从 0 开始
  1. @Data
  2. public class User {
  3.     @ExcelProperty(value = "用户Id", index = 2)
  4.     private Integer userId;
  5.     @ExcelProperty(value = "姓名", index = 1)
  6.     private String name;
  7.     @ExcelProperty(value = "手机")
  8.     private String phone;
  9.     @ExcelProperty(value = "邮箱")
  10.     private String email;
  11.     @ExcelProperty(value = "创建时间")
  12.     private Date createTime;
  13. }
复制代码
  1. @Data
  2. public class User {
  3.     @ExcelProperty(value = "用户Id", index = 2)
  4.     private Integer userId;
  5.     @ExcelProperty(value = "姓名", index = 1)
  6.     private String name;
  7.     @ExcelProperty(value = "手机", index = 10)
  8.     private String phone;
  9.     @ExcelProperty(value = "邮箱", index = 12)
  10.     private String email;
  11.     @ExcelProperty(value = "创建时间")
  12.     private Date createTime;
  13. }
复制代码

order

指定顺序
  1. @Data
  2. public class User {
  3.     @ExcelProperty(value = "用户Id")
  4.     private Integer userId;
  5.     @ExcelProperty(value = "姓名")
  6.     private String name;
  7.     @ExcelProperty(value = "手机", order = 11)
  8.     private String phone;
  9.     @ExcelProperty(value = "邮箱", order = 10)
  10.     private String email;
  11.     @ExcelProperty(value = "创建时间")
  12.     private Long createTime;
  13. }
复制代码

order 的默认值为 Integer.MAX_VALUE,通过结果我们可以得出结论:order 值越小,越排在前面
留意:
convert

自定义转换器

在读写 EXCEL 时,有时候需要我们进行数据类型转换,例如我们这里的创建时间,在实体对象中是 Long 类型,但是这样直接导出到 Excel 中不太直观。我们需要转换成 yyyy-MM-dd HH:mm:ss 格式,此时我们就可以用到转换器。
  1. public class DateTimeConverter implements Converter<Long> {
  2.     private final DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
  3.     // 支持导入的Java类型
  4.     @Override
  5.     public Class<?> supportJavaTypeKey() {
  6.         return Long.class;
  7.     }
  8.     // 支持导出的Excel类型
  9.     @Override
  10.     public CellDataTypeEnum supportExcelTypeKey() {
  11.         return CellDataTypeEnum.STRING;
  12.     }
  13.     // 转换为Java
  14.     @Override
  15.     public Long convertToJavaData(ReadCellData<?> cellData, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) throws Exception {
  16.         return null;
  17.     }
  18.     // 转换为Excel
  19.     @Override
  20.     public WriteCellData<?> convertToExcelData(Long value, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) throws Exception {
  21.         if (value == null) {
  22.             return new WriteCellData(CellDataTypeEnum.STRING, null);
  23.         }
  24.         LocalDateTime localDateTime = LocalDateTime.ofInstant(Instant.ofEpochMilli(value), ZoneId.systemDefault());
  25.         String dateStr = localDateTime.format(dateTimeFormatter);
  26.         return new WriteCellData(dateStr);
  27.     }
  28. }
复制代码
  1. @Data
  2. public class User {
  3.     @ExcelProperty(value = "用户Id")
  4.     private Integer userId;
  5.     @ExcelProperty(value = "姓名")
  6.     private String name;
  7.     @ExcelProperty(value = "手机", order = 11)
  8.     private String phone;
  9.     @ExcelProperty(value = "邮箱", order = 10)
  10.     private String email;
  11.     @ExcelProperty(value = "创建时间", converter = DateTimeConverter.class)
  12.     private Long createTime;
  13. }
复制代码

摆列转换
  1. /**
  2. * Excel 性别转换器
  3. */
  4. public class GenderConverter implements Converter<Integer> {
  5.     @Override
  6.     public Class<?> supportJavaTypeKey() {
  7.         return Integer.class;
  8.     }
  9.     @Override
  10.     public CellDataTypeEnum supportExcelTypeKey() {
  11.         return CellDataTypeEnum.STRING;
  12.     }
  13.     @Override
  14.     public Integer convertToJavaData(ReadConverterContext<?> context) {
  15.         return GenderEnum.convert(context.getReadCellData().getStringValue()).getValue();
  16.     }
  17.     @Override
  18.     public WriteCellData<?> convertToExcelData(WriteConverterContext<Integer> context) {
  19.         return new WriteCellData<>(GenderEnum.convert(context.getValue()).getDescription());
  20.     }
  21. }
复制代码
  1. /**
  2. * 性别枚举
  3. */
  4. @Getter
  5. @AllArgsConstructor
  6. public enum GenderEnum {
  7.     UNKNOWN(0, "未知"),
  8.     MALE(1, "男性"),
  9.     FEMALE(2, "女性");
  10.     private final Integer value;
  11.     private final String description;
  12.     public static GenderEnum convert(Integer value) {
  13.         return Stream.of(values())
  14.                 .filter(bean -> bean.value.equals(value))
  15.                 .findAny()
  16.                 .orElse(UNKNOWN);
  17.     }
  18.     public static GenderEnum convert(String description) {
  19.         return Stream.of(values())
  20.                 .filter(bean -> bean.description.equals(description))
  21.                 .findAny()
  22.                 .orElse(UNKNOWN);
  23.     }
  24. }
复制代码
@ExcelIgnore

默认所有字段都会和 excel 去匹配,加了这个注解会忽略该字段
  1. @Data
  2. public class User {
  3.     @ExcelProperty(value = "用户Id")
  4.     private Integer userId;
  5.     @ExcelProperty(value = "姓名")
  6.     private String name;
  7.     @ExcelProperty(value = "手机")
  8.     private String phone;
  9.     @ExcelProperty(value = "邮箱")
  10.     @ExcelIgnore
  11.     private String email;
  12.     @ExcelProperty(value = "创建时间", converter = DateTimeConverter.class)
  13.     @ExcelIgnore
  14.     private Long createTime;
  15. }
复制代码

@ExcelIgnoreUnannotated

不标注该注解时,默认类中所有成员变量都会参与读写,无论是否在成员变量上加了@ExcelProperty 的注解。标注该注解后,类中的成员变量如果没有标注 @ExcelProperty 注解将不会参与读写。
  1. @ExcelIgnoreUnannotated
  2. @Data
  3. public class User {
  4.     @ExcelProperty(value = "用户Id")
  5.     private Integer userId;
  6.     @ExcelProperty(value = "姓名")
  7.     private String name;
  8.     @ExcelProperty(value = "手机")
  9.     private String phone;
  10.     private String email;
  11.     private Long createTime;
  12. }
复制代码

@ColumnWidth

用于设置表格列的宽度
  1. @Data
  2. public class User {
  3.     @ColumnWidth(200)
  4.     @ExcelProperty(value = "用户Id")
  5.     private Integer userId;
  6.     @ExcelProperty(value = "姓名")
  7.     private String name;
  8.     @ExcelProperty(value = "手机")
  9.     private String phone;
  10.     @ExcelProperty(value = "邮箱")
  11.     private String email;
  12.     @ExcelProperty(value = "创建时间", converter = DateTimeConverter.class)
  13.     private Long createTime;
  14. }
复制代码

@ContentRowHeight

标注在类上,指定内容行高
  1. @Data
  2. @ContentRowHeight(value = 50)
  3. public class User {
  4.     @ExcelProperty(value = "用户Id")
  5.     private Integer userId;
  6.     @ExcelProperty(value = "姓名")
  7.     private String name;
  8.     @ExcelProperty(value = "手机")
  9.     private String phone;
  10.     @ExcelProperty(value = "邮箱")
  11.     private String email;
  12.     @ExcelProperty(value = "创建时间", converter = DateTimeConverter.class)
  13.     private Long createTime;
  14. }
复制代码

@HeadRowHeight

标注在类上,指定列头行高
  1. @Data
  2. @HeadRowHeight(80)
  3. @ContentRowHeight(value = 50)
  4. public class User {
  5.     @ExcelProperty(value = "用户Id")
  6.     private Integer userId;
  7.     @ExcelProperty(value = "姓名")
  8.     private String name;
  9.     @ExcelProperty(value = "手机")
  10.     private String phone;
  11.     @ExcelProperty(value = "邮箱")
  12.     private String email;
  13.     @ExcelProperty(value = "创建时间", converter = DateTimeConverter.class)
  14.     private Long createTime;
  15. }
复制代码

@ContentStyle

用于设置内容格式注解
@ContentFontStyle

用于设置单位格内容字体格式的注解
@HeadStyle

用于设置标题样式
@HeadFontStyle

用于定制标题字体格式
@ContentLoopMerge

用于设置合并单位格的注解,作用于字段上
@OnceAbsoluteMerge

用于指定位置的单位格合并,作用于类上
@DateTimeFormat

日期转换,读取 Excel 文件时用 String 去接收 excel 日期格式的数据会调用这个注解。里面的 value 参照 java.text.SimpleDateFormat
  1. @Data
  2. public class User {
  3.     @ExcelProperty(value = "用户Id")
  4.     private Integer userId;
  5.     @ExcelProperty(value = "姓名")
  6.     private String name;
  7.     @ExcelProperty(value = "手机")
  8.     private String phone;
  9.     @ExcelProperty(value = "邮箱")
  10.     private String email;
  11.     @DateTimeFormat("yyyy-MM-dd")
  12.     @ExcelProperty(value = "创建时间")
  13.     private Date createTime;
  14. }
复制代码
@NumberFormat

数字转换,用 String 去接收 excel 数字格式的数据会调用这个注解。里面的 value 参照 java.text.DecimalFormat


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 IT评测·应用市场-qidao123.com (https://dis.qidao123.com/) Powered by Discuz! X3.4