导出列表数据到Excel并下载

Java导出查询到的数据列表为Excel并下载

1.背景

工作中经常有需求,需要把列表的数据导出为Excel并下载。EasyExcel工具可以很好的实现这一需求。

2.实现流程

1.引入EasyExcel依赖包

bash 复制代码
<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>easyexcel</artifactId>
    <version>3.3.2</version>
</dependency>

2.创建实体VO,添加需要导出的字段并添加注释(根据自己需求创建)

java 复制代码
public class UserExcelVo {
    @ExcelProperty(value = "用户Id")
    private String userId;
    
	@ExcelProperty(value = "用户名称")
    private String userName;

    @ExcelProperty(value = "操作时间")
    private String createTime;
}

3.数据库中查到的实体列表转换成VoList

如果字段有需要特殊处理的,需要调用set方法单独设置。

java 复制代码
List<UserExcelVo > userExcelVos = new ArrayList<>();
for (User user : list) {
   	 UserExcelVo userExcelVo = new UserExcelVo();
     BeanUtils.copyProperties(user,userExcelVo);
     userExcelVos.add(userExcelVo);
}

4.使用EasyExcel工具导出数据

java 复制代码
public void export(List<UserExcelVo > userExcelVos ,HttpServletResponse response){
        String fileName = "用户记录.xlsx";
        try {
            response.setContentType(MediaType.APPLICATION_OCTET_STREAM_VALUE);
            response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode(fileName, "utf-8"));
            OutputStream outputStream =response.getOutputStream();
            EasyExcel.write(outputStream,UserExcelVo.class).sheet("用户记录").doWrite(userExcelVos);
        }catch (Exception e){
            log.error("导出用户记录失败,原因: {}",e.getMessage());
            throw new ServiceException("导出用户记录数据失败");
        }
    }

Controller层和业务层逻辑按自己需求完善,有更好的方法欢迎分享。

相关推荐
桂月二二44 分钟前
Java与容器化:如何使用Docker和Kubernetes优化Java应用的部署
java·docker·kubernetes
liuxin334455661 小时前
学籍管理系统:实现教育管理现代化
java·开发语言·前端·数据库·安全
大G哥1 小时前
pytest自动化测试数据驱动yaml/excel/csv/json
json·excel·pytest
小马爱打代码1 小时前
设计模式详解(建造者模式)
java·设计模式·建造者模式
小奥超人1 小时前
Excel粘贴复制不完整的原因以及解决方法
windows·经验分享·microsoft·excel·办公技巧
code04号1 小时前
python脚本:批量提取excel数据
开发语言·python·excel
栗子~~2 小时前
idea 8年使用整理
java·ide·intellij-idea
2301_801483692 小时前
Maven核心概念
java·maven
Q_19284999062 小时前
基于Spring Boot的电影售票系统
java·spring boot·后端
我要学编程(ಥ_ಥ)3 小时前
初始JavaEE篇 —— 网络原理---传输层协议:深入理解UDP/TCP
java·网络·tcp/ip·udp·java-ee