springboot导出excel功能

package com.book.book.controller;

import com.book.book.pojo.Books;
import com.book.book.service.BooksService;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.annotation.Resource;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.List;
@RequestMapping("/demo")
@Controller
public class DemoController {
    @Resource
    BooksService booksService;
    String sheetName = "ceshi";
    String [] sd= {"标题","作者"};
    String filePath = "D:\\temp\\";
    @GetMapping("se")
    public void se() {
            String timeStamp = String.valueOf(System.currentTimeMillis()); // 获取当前时间戳

        //查询出要导出的列表
        List<Books> books = booksService.booksList1();
        //导出的是个对象,现在new出这个对象
        Workbook workBook = new XSSFWorkbook();
        //设置表格名字
        Sheet sheet = workBook.createSheet(sheetName);
        //设置第一行 表头行
        Row row = sheet.createRow(0);
        //循环表头上面已经列出的数组
        for (int i = 0; i < sd.length; i++) {
            row.createCell(i).setCellValue(sd[i]);
        }
        //从第二行开始 循环插入数据列表
        for (int i = 0; i < books.size(); i++) {
            Row currentRow = sheet.createRow(i + 1); // 从第二行开始
            currentRow.createCell(0).setCellValue(books.get(i).getBookTitle()); // 设置书标题
            currentRow.createCell(1).setCellValue(books.get(i).getBookAuthor()); // 设置作者
        }
        //打开输出流操作
        try (FileOutputStream fileOutputStream = new FileOutputStream(filePath+timeStamp+"ssd.xlsx")) {
            workBook.write(fileOutputStream);
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (workBook != null) {
                try {
                    workBook.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }    }
}



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值