在Spring Boot中,實現文件上傳功能通常需要使用Spring MVC的MultipartFile對象來接收并處理上傳的文件。下面是一個簡單的實現文件上傳功能的示例代碼:
@RestController
public class FileUploadController {
private final String UPLOAD_DIR = "uploads/";
@PostMapping("/upload")
public String handleFileUpload(@RequestParam("file") MultipartFile file) {
try {
Path filePath = Paths.get(UPLOAD_DIR + file.getOriginalFilename());
Files.write(filePath, file.getBytes());
return "File uploaded successfully!";
} catch (IOException e) {
return "Failed to upload file!";
}
}
}
spring.servlet.multipart.max-file-size=10MB
spring.servlet.multipart.max-request-size=10MB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>File Upload</title>
</head>
<body>
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="file" name="file">
<button type="submit">Upload</button>
</form>
</body>
</html>
通過上述步驟,你就可以實現一個簡單的文件上傳功能。當用戶在HTML表單中選擇一個文件并點擊上傳按鈕時,文件將被傳輸到指定的目錄中,并返回上傳成功或失敗的消息。你可以根據實際需求對文件上傳功能進行擴展和優化。