需要做大檔案上傳應該考慮到以下邏輯:
#大檔案上傳一般需要將檔案切片(chunk)上傳,然後再將所有切片合併為完整的文件。可以按以下邏輯進行實現:
前端在頁面中選擇要上傳的文件,並使用Blob.slice方法對文件進行切片,一般每個切片大小為固定值(例如5MB),並記錄總共有多少切片。
將切片分別上傳到後端服務,可以使用XMLHttpRequest或Axios等函式庫傳送Ajax請求。對於每個切片,需要包含三個參數:目前切片索引(從0開始)、切片總數、切片檔案資料。
後端服務接收到切片後,儲存到指定路徑下的暫存檔案中,並記錄已上傳的切片索引和上傳狀態。如果某個切片上傳失敗,則通知前端重傳該切片。
當所有切片都上傳成功後,後端服務會讀取所有切片內容並將其合併為完整的檔案。可以使用java.io.SequenceInputStream和BufferedOutputStream來實現文件合併。
最後返回檔案上傳成功的回應結果給前端即可。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>File Upload</title> </head> <body> <input type="file" id="fileInput"> <button onclick="upload()">Upload</button> <script> function upload() { let file = document.getElementById("fileInput").files[0]; let chunkSize = 5 * 1024 * 1024; // 切片大小为5MB let totalChunks = Math.ceil(file.size / chunkSize); // 计算切片总数 let index = 0; while (index < totalChunks) { let chunk = file.slice(index * chunkSize, (index + 1) * chunkSize); let formData = new FormData(); formData.append("file", chunk); formData.append("index", index); formData.append("totalChunks", totalChunks); // 发送Ajax请求上传切片 $.ajax({ url: "/uploadChunk", type: "POST", data: formData, processData: false, contentType: false, success: function () { if (++index >= totalChunks) { // 所有切片上传完成,通知服务端合并文件 $.post("/mergeFile", {fileName: file.name}, function () { alert("Upload complete!"); }) } } }); } } </script> </body> </html>
controller層:
@RestController public class FileController { @Value("${file.upload-path}") private String uploadPath; @PostMapping("/uploadChunk") public void uploadChunk(@RequestParam("file") MultipartFile file, @RequestParam("index") int index, @RequestParam("totalChunks") int totalChunks) throws IOException { // 以文件名+切片索引号为文件名保存切片文件 String fileName = file.getOriginalFilename() + "." + index; Path tempFile = Paths.get(uploadPath, fileName); Files.write(tempFile, file.getBytes()); // 记录上传状态 String uploadFlag = UUID.randomUUID().toString(); redisTemplate.opsForList().set("upload:" + fileName, index, uploadFlag); // 如果所有切片已上传,则通知合并文件 if (isAllChunksUploaded(fileName, totalChunks)) { sendMergeRequest(fileName, totalChunks); } } @PostMapping("/mergeFile") public void mergeFile(String fileName) throws IOException { // 所有切片均已成功上传,进行文件合并 List<File> chunkFiles = new ArrayList<>(); for (int i = 0; i < getTotalChunks(fileName); i++) { String chunkFileName = fileName + "." + i; Path tempFile = Paths.get(uploadPath, chunkFileName); chunkFiles.add(tempFile.toFile()); } Path destFile = Paths.get(uploadPath, fileName); try (OutputStream out = Files.newOutputStream(destFile); SequenceInputStream seqIn = new SequenceInputStream(Collections.enumeration(chunkFiles)); BufferedInputStream bufIn = new BufferedInputStream(seqIn)) { byte[] buffer = new byte[1024]; int len; while ((len = bufIn.read(buffer)) > 0) { out.write(buffer, 0, len); } } // 清理临时文件和上传状态记录 for (int i = 0; i < getTotalChunks(fileName); i++) { String chunkFileName = fileName + "." + i; Path tempFile = Paths.get(uploadPath, chunkFileName); Files.deleteIfExists(tempFile); redisTemplate.delete("upload:" + chunkFileName); } } private int getTotalChunks(String fileName) { // 根据文件名获取总切片数 return Objects.requireNonNull(Paths.get(uploadPath, fileName).toFile().listFiles()).length; } private boolean isAllChunksUploaded(String fileName, int totalChunks) { // 判断所有切片是否已都上传完成 List<String> uploadFlags = redisTemplate.opsForList().range("upload:" + fileName, 0, -1); return uploadFlags != null && uploadFlags.size() == totalChunks; } private void sendMergeRequest(String fileName, int totalChunks) { // 发送合并文件请求 new Thread(() -> { try { URL url = new URL("http://localhost:8080/mergeFile"); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setRequestMethod("POST"); conn.setDoOutput(true); conn.setDoInput(true); conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded;charset=utf-8"); OutputStream out = conn.getOutputStream(); String query = "fileName=" + fileName; out.write(query.getBytes()); out.flush(); out.close(); BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream(), StandardCharsets.UTF_8)); while (br.readLine() != null) ; br.close(); } catch (IOException e) { e.printStackTrace(); } }).start(); } @Autowired private RedisTemplate<String, Object> redisTemplate; }
其中,file.upload-path為檔案上傳的保存路徑,可以在application.properties或application.yml中進行設定。同時需要新增RedisTemplate的Bean以便記錄上傳狀態。
如果需要使用RedisTemplate,需要引入下方的套件
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>
同時在yml配置redis的資訊
spring.redis.host=localhost spring.redis.port=6379 spring.redis.database=0
然後在自己的類中這樣使用
@Component public class myClass { @Autowired private RedisTemplate<String, Object> redisTemplate; public void set(String key, Object value) { redisTemplate.opsForValue().set(key, value); } public Object get(String key) { return redisTemplate.opsForValue().get(key); } }
注意事項
需要控制每次上傳的切片大小,以兼顧上傳速度和穩定性,避免佔用過多伺服器資源或因網絡不穩定而導致上傳失敗。
切片上傳存在先後順序,需要確保所有切片都上傳完成後再進行合併,否則可能會出現檔案不完整或檔案合併錯誤等情況。
上傳完成後需要及時清理臨時文件,避免因為佔用過多磁碟空間而導致伺服器崩潰。可以設定一個定期任務來清理過期的臨時檔案。
以上是怎麼使用vue+springboot上傳大文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!