在Spring Boot中使用HttpHeaders下载Excel文件的步骤如下:
pom.xml
文件中添加以下依赖:<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.2</version>
</dependency>
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
@RestController
public class ExcelController {
@GetMapping("/download")
public ResponseEntity<byte[]> downloadExcel() throws IOException {
// 创建一个工作簿
Workbook workbook = new XSSFWorkbook();
// 创建一个工作表
Sheet sheet = workbook.createSheet("Sheet1");
// 创建一行
Row row = sheet.createRow(0);
// 创建单元格并设置值
Cell cell = row.createCell(0);
cell.setCellValue("Hello, World!");
// 将工作簿转换为字节数组
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
workbook.write(outputStream);
byte[] excelBytes = outputStream.toByteArray();
// 设置响应头
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
headers.setContentDispositionFormData("attachment", "example.xlsx");
return new ResponseEntity<>(excelBytes, headers, HttpStatus.OK);
}
}
/download
路径,即可下载名为example.xlsx
的Excel文件。这个方法使用Apache POI库创建一个Excel文件,并将其转换为字节数组。然后,通过设置响应头的Content-Type为application/octet-stream
,并使用Content-Disposition
指定文件名和下载方式,将Excel文件作为响应体返回给客户端。
请注意,这里的示例仅用于演示如何在Spring Boot中使用HttpHeaders下载Excel文件。实际应用中,你可能需要根据具体需求进行修改和优化。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云