如何使用Spring Boot导出数据到Excel表格

在开发应用程序时,经常会遇到将数据导出到Excel表格的需求。Spring Boot提供了简单而有效的方法来实现这个功能。本文将介绍如何使用Spring Boot和Apache POI库将数据导出到Excel表格,并提供一个示例代码来演示该过程。

1. 准备工作

首先,确保你的Spring Boot项目已经正确设置并且已经添加了相关的依赖并在filePath创建对应的Excel表格 。在本示例中,我们将使用Apache POI来处理Excel文件。你可以在项目的 pom.xml 文件中添加以下依赖:

xml 复制代码
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi</artifactId>
    <version>5.2.4</version>
</dependency>
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>5.2.4</version>
</dependency>

这两个依赖分别是 poipoi-ooxml,它们提供了对Excel文件的处理和支持。

2. 创建导出功能

下面是一个简单的Spring Boot控制器方法,用于将数据导出到Excel表格:

java 复制代码
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

@RestController
public class ExcelExportController {

    @PostMapping("/exportToExcel")
    public void exportToExcel(@RequestParam String filePath) throws IOException {
        // Mock 4 条 Car 数据
        List<Car> carList = new ArrayList<>();
        carList.add(new Car("Red", "Toyota", 25000.00));
        carList.add(new Car("Blue", "Honda", 30000.00));
        carList.add(new Car("Black", "Ford", 28000.00));
        carList.add(new Car("White", "BMW", 45000.00));

        // 创建 Excel 工作簿和工作表
        Workbook workbook = new XSSFWorkbook();
        Sheet sheet = workbook.createSheet("CarList");

        // 创建表头行
        Row headerRow = sheet.createRow(0);
        headerRow.createCell(0).setCellValue("Color");
        headerRow.createCell(1).setCellValue("Brand");
        headerRow.createCell(2).setCellValue("Price");

        // 写入数据行
        int rowNum = 1;
        for (Car car : carList) {
            Row row = sheet.createRow(rowNum++);
            row.createCell(0).setCellValue(car.getColor());
            row.createCell(1).setCellValue(car.getBrand());
            row.createCell(2).setCellValue(car.getPrice());
        }

        // 自动调整列宽
        for (int i = 0; i < 3; i++) {
            sheet.autoSizeColumn(i);
        }

        // 写入文件
        try (FileOutputStream fileOut = new FileOutputStream(filePath)) {
            workbook.write(fileOut);
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            workbook.close(); // 关闭工作簿释放资源
        }
    }
}

效果图如下:

3. 使用方法

通过POST请求调用 /exportToExcel 接口,并传递一个文件路径作为参数,即可将数据导出到Excel表格中。

4. 总结

本文介绍了如何使用Spring Boot和Apache POI库将数据导出到Excel表格的方法。通过一个简单的示例,你可以了解到实现这一功能的基本步骤和方法。在实际项目中,你可以根据需求对代码进行扩展和定制,以满足更复杂的导出需求。

希望本文对你有所帮助,如果有任何疑问或建议,请随时留言。

相关推荐
uhakadotcom3 分钟前
Mypy入门:Python静态类型检查工具
后端·面试·github
喵个咪8 分钟前
开箱即用的GO后台管理系统 Kratos Admin - 定时任务
后端·微服务·消息队列
Asthenia041210 分钟前
ArrayList与LinkedList源码分析及面试应对策略
后端
Asthenia041240 分钟前
由浅入深解析Redis事务机制及其业务应用-电商场景解决超卖
后端
Asthenia041241 分钟前
Redis详解:从内存一致性到持久化策略的思维链条
后端
Asthenia041241 分钟前
深入剖析 Redis 持久化:RDB 与 AOF 的全景解析
后端
Apifox1 小时前
如何在 Apifox 中通过 CLI 运行包含云端数据库连接配置的测试场景
前端·后端·程序员
inxunoffice1 小时前
批量将文本文件转换为 Word/PDF/Excel/图片等其它格式
pdf·word·excel
掘金一周1 小时前
金石焕新程 >> 瓜分万元现金大奖征文活动即将回归 | 掘金一周 4.3
前端·人工智能·后端
uhakadotcom1 小时前
构建高效自动翻译工作流:技术与实践
后端·面试·github