官网:
Excel生成-ExcelWriter (hutool.cn)
1.使用Hutool工具实现Excel导出(.xlsx格式)
业务场景:
使用SpringCloud+mysql+mybatis-plus需要将数据库中的数据导出到Excel文件中
前端为Vue2
第零步:导入依赖
<!--EasyExcel依赖-->(用于生成Excel文件) <dependency><groupId>com.alibaba</groupId><artifactId>easyexcel</artifactId><version>3.0.5</version> </dependency> <!--EasyExcel依赖2-->(用于处理 Microsoft Office 格式文件) <dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>4.1.2</version> </dependency>
(个别版本不支持)