使用EasyExcel进行导入导出

1.导入依赖,注意不要导入其他关于excel的依赖,会冲突

        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>easyexcel</artifactId>
            <version>3.0.5</version>
        </dependency>

2. 编写实体类

@Data
@ToString
@AllArgsConstructor
@NoArgsConstructor
@HeadRowHeight(value = 35) // 表头行高
@ContentRowHeight(value = 25) // 内容行高
@ColumnWidth(value = 20) // 列宽
public class StudentEntity implements java.io.Serializable {
    /**
     * 学生姓名
     */
    @ExcelProperty(value={"学生信息表","名字"}, index=0)
    private String  name;
    /**
     * 学生性别
     */
    @ExcelProperty(value={"学生信息表","性别"}, index=1)
    private int  sex;

    @ExcelProperty(value={"学生信息表","生日"}, index=2)
    private Date birthday;

    @ExcelProperty(value={"学生信息表","进校日期"}, index=3)
    private Date registrationDate;
}

3. 编写导出代码

@Test
public void test5() {
    ArrayList<StudentEntity> list = new ArrayList<>();
    StudentEntity studentEntity = new StudentEntity();
    studentEntity.setName("aaa");
    studentEntity.setBirthday(new Date());
    studentEntity.setSex(1);
    studentEntity.setRegistrationDate(new Date());
    list.add(studentEntity);
    WriteCellStyle headWriteCellStyle = new WriteCellStyle();
    //设置背景颜色
    headWriteCellStyle.setFillForegroundColor(IndexedColors.WHITE.getIndex());
    //设置头字体
    WriteFont headWriteFont = new WriteFont();
    headWriteFont.setFontHeightInPoints((short)13);
    headWriteFont.setBold(true);
    headWriteCellStyle.setWriteFont(headWriteFont);
    //内容策略
    WriteCellStyle contentWriteCellStyle = new WriteCellStyle();
    //设置 水平居中
    contentWriteCellStyle.setHorizontalAlignment(HorizontalAlignment.CENTER);
    HorizontalCellStyleStrategy horizontalCellStyleStrategy =
            new HorizontalCellStyleStrategy(headWriteCellStyle, contentWriteCellStyle);
    EasyExcel.write("学生信息表.xlsx", StudentEntity.class).registerWriteHandler(horizontalCellStyleStrategy).sheet().doWrite(list);
}

4.运行之后会在项目中生成

5.打开可以看到生成的excel如下

6.详情可见官网

EasyExcel · 语雀EasyExcel是一个基于Java的简单、省内存的读...https://www.yuque.com/easyexcel/doc/easyexcel

或者其他博主详细解析

框架篇-easyexcel使用 - 简书EasyExcel 1.简介 传统Excel操作或者解析都是利用Apach POI进行操作,但是使用过这个框架的人都知道,这个框架并不完美,有较多的缺陷: 使用步骤繁琐 动态...https://www.jianshu.com/p/d1d264c817ef

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

雨会停rain

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值