1. 程式人生 > >SpringBoot基礎實戰系列(三)springboot單檔案與多檔案上傳

SpringBoot基礎實戰系列(三)springboot單檔案與多檔案上傳

## springboot單檔案上傳 對於springboot檔案上傳需要了解一個類`MultipartFile `,該類用於檔案上傳。我此次使用`thymeleaf`模板引擎,該模板引擎檔案字尾 `.html`。 #### 1.建立controller ```java /** * 單檔案上傳,使用post請求 * @param file * @return */ @PostMapping("/upload") @ResponseBody public String fileupload(MultipartFile file){ // 獲取檔案的原檔名 String oldName = file.getOriginalFilename(); // 檔案上傳,儲存為新的檔名 if (!"".equals(oldName) && oldName != null){ // 獲取檔案字尾 String suffixFileName = oldName.substring(oldName.lastIndexOf(".")); // 設定檔案儲存的資料夾 SimpleDateFormat sdf = new SimpleDateFormat("/yyyy/MM/dd"); String filePath = "C:/Users/Desktop/springboot" + sdf.format(new Date()) + "/" + UUID.randomUUID() + suffixFileName; File dest = new File(filePath); // 判斷資料夾是否存在 if (!dest.exists()){ dest.mkdirs(); } try { // 檔案寫入 file.transferTo(dest); // 返回檔案儲存成功之後的檔名路徑 return filePath; } catch (Exception e) { e.printStackTrace(); } } return "檔案上傳失敗"; } ``` #### 2.建立`upload.html`頁面 ```html 單檔案上傳 ``` #### 注意: - 對於檔案上傳,我們一般使用 `post` 方法 - 前端`html`頁面我暫時放在`static`資料夾下,由於瀏覽器頁面是直接先訪問到 `html`頁面的,而不是通過 `controller`跳轉得到的,所以該頁面屬於靜態頁面,而`static`資料夾下的資原始檔屬於靜態資原始檔都是可以直接訪問的。這一點要區別於`templates`資料夾。 - 可能出現的報錯:` template might not exist or might not be accessible by any of the configured Template Resolvers`,可能原因是:需要在`controller`方法體上加上註解 `@ResponseBody或@RestController`。 ## springboot多檔案上傳 多檔案上傳相比較於單檔案上傳,區別於單檔案上傳,多檔案上傳後端方法使用陣列來接收 `MultipartFile[] files`,且多檔案上傳只是迴圈呼叫單檔案上傳的方法。 #### 1.建立controller ```java /** * 多檔案上傳(只是比單檔案上傳多了一個迴圈) * @param files 檔案集合 * @return */ @PostMapping("/uploads") @ResponseBody public String fileUploadMultipart(MultipartFile[] files, HttpServletRequest request){ // HttpSession session = request.getSession(); // System.out.println(session); // ServletContext servletContext = session.getServletContext(); // System.out.println(servletContext); // String context = servletContext.getRealPath("context"); // System.out.println(context);