在Spring Boot中,可以使用MultipartFile接口来实现文件上传功能,使用ResponseEntity来实现文件下载功能。
文件上传功能的实现步骤如下:
@PostMapping("/upload")
public String uploadFile(@RequestParam("file") MultipartFile file) {
// 处理文件上传逻辑
// ...
return "上传成功";
}
spring:
servlet:
multipart:
max-file-size: 10MB
max-request-size: 10MB
<form th:action="@{/upload}" method="post" enctype="multipart/form-data">
<input type="file" name="file">
<button type="submit">上传</button>
</form>
文件下载功能的实现步骤如下:
@GetMapping("/download/{filename}")
public ResponseEntity<Resource> downloadFile(@PathVariable String filename) {
// 获取文件路径
String filePath = "path/to/file/" + filename;
// 创建文件资源对象
Resource fileResource = new FileSystemResource(filePath);
// 设置响应头
HttpHeaders headers = new HttpHeaders();
headers.add(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=" + filename);
return ResponseEntity.ok()
.headers(headers)
.contentLength(fileResource.contentLength())
.contentType(MediaType.APPLICATION_OCTET_STREAM)
.body(fileResource);
}
<a th:href="@{/download/filename}" download>下载</a>
其中,filename为要下载的文件名。
以上就是Spring Boot中实现文件上传下载功能的基本步骤。具体实现根据具体需求可能会有所不同,可以根据需要进行调整。