springboot使用easyExcel实现写入数据到excel表格中

由于easyExcel是在poi基础上进行的封装,所以需要引入poi依赖

<!--xls-->
<dependency>
     <groupId>org.apache.poi</groupId>
     <artifactId>poi</artifactId>
     <version>${poi.version}</version>
 </dependency>
 <!--xlsx-->
 <dependency>
     <groupId>org.apache.poi</groupId>
     <artifactId>poi-ooxml</artifactId>
     <version>${poi.version}</version>
 </dependency>
 <dependency>
     <groupId>com.alibaba</groupId>
     <artifactId>easyexcel</artifactId>
     <version>2.1.1</version>
 </dependency>

创建一个实体类,用于封装数据写入到excel中

@Data
public class DemoData {
    //设置excel表头的名称
    @ExcelProperty("学生编号")
    private Integer sno;
    //设置excel表头的名称
    @ExcelProperty("学生姓名")
    private String sname;
}

编写测试类

public class ExcelDemo {
    public static void main(String[] args) {
        //实现excel写的操作
        //设置写入文件夹地址和excel文件名
        String filename = "D:\\write.xlsx";
        //调用easyexcel里面的方法实现写操作
        //write方法两个参数,第一个参数文件路径名,第二个参数实体类class,
        EasyExcel.write(filename, DemoData.class).sheet("学生列表").doWrite(getData());

    }

    //模拟数据库查询到数据写入到excel中
    private static List<DemoData> getData() {
        List<DemoData> list = new ArrayList<>();
        for (int i = 0; i < 10; i++) {
            DemoData data = new DemoData();
            data.setSno(i);
            data.setSname("学生名" + i);
            list.add(data);
        }
        return list;
    }
}

测试结果就将数据导入到excel中了
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

量化接口stockapi

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

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

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

打赏作者

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

抵扣说明:

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

余额充值