springboot整合easyexcel来导出数据
2022/2/28 23:53:51
本文主要是介绍springboot整合easyexcel来导出数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
easyexcel是阿里巴巴出品的,导出官方文档地址:Alibaba Easy Excel - 简单、省内存的Java解析Excel工具 | 写Excel
下面通过实例来演示导出数据demo
首先新建一个springboot项目(这里不再赘述)
然后在pom里面引入easyExcel的依赖:
<dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>2.1.1</version> </dependency>
然后直接展示业务逻辑的关键代码:
public void exportData(HttpServletResponse response) { // 设置下载信息 response.setContentType("application/vnd.ms-excel"); response.setCharacterEncoding("utf-8"); // URLEncoder.encode可以防止中文乱码 String fileName= null; try { fileName = URLEncoder.encode("has测试下载","UTF-8"); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } response.setHeader("Content-disposition","attachment;filename="+fileName+".xlsx"); // 查询数据信息 List<User> userList=exportMapper.queryAllData(); //将User映射为导出的实体类 List<UserExcel> userExcelList=new ArrayList<>(); for (User user:userList){ UserExcel userExcel=new UserExcel(); BeanUtils.copyProperties(user,userExcel); userExcelList.add(userExcel); } //调用方法进行写操作 try { EasyExcel.write(response.getOutputStream(),UserExcel.class).sheet("名单信息(sheet名称)").doWrite(userExcelList); } catch (IOException e) { e.printStackTrace(); } }
注意:代码中有一点就是将User转为UserExcel,这是因为在使用easyExcel导出数据的时候需要有一个实体类来和excel中的字段进行映射,由于需要在实体类中设置excel的属性,所以另起一个实体类来封装导出的excel的字段比较合适。
UserExcel:
@Data public class UserExcel { /** * index指定在excel中列数 */ @ExcelProperty(value = "序号" ,index = 0) private int id; @ExcelProperty(value = "姓名" ,index = 1) private String name; @ExcelProperty(value = "年龄" ,index = 2) private int age; @ExcelProperty(value = "省份" ,index = 3) private String province; @ExcelProperty(value = "城市" ,index = 4) private String city; @ExcelProperty(value = "地址" ,index = 5) private String address; @ExcelProperty(value = "爱好" ,index = 6) private String hobby; }
代码写完启动服务通过浏览器访问地址:http://localhost:8888/exportData
导出的excel的信息如下:
而我数据库中的信息如下所示:
可以发现导出的数据是正常的,导出功能完成,相关的整个demo的代码已经上传到csdn,有需要的可以下载,下载地址:演示通过easyExcel来导出excel数据-Java文档类资源-CSDN下载
这篇关于springboot整合easyexcel来导出数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-04百万架构师第六课:设计模式:策略模式及模板模式
- 2025-01-04百万架构师第七课:设计模式:装饰器模式及观察者模式
- 2025-01-04适用于企业管理的协作工具API推荐
- 2025-01-04挑战16:被限流的CPU
- 2025-01-03企业在选择工具时,如何评估其背后的技术团队
- 2025-01-03Angular中打造动态多彩标签组件的方法
- 2025-01-03Flask过时了吗?FastAPI才是未来?
- 2025-01-0311个每位开发者都应知道的免费实用网站
- 2025-01-03从REST到GraphQL:为什么以及我是如何完成转型的
- 2025-01-03掌握RAG:从单次问答到连续对话