-
新建一個模塊裹赴,在創(chuàng)建時勾選web和Thymeleaf依賴
-
新建一個upload.java文件
package com.springboot.upload.controller;
import org.springframework.stereotype.Controller;
import org.springframework.util.ResourceUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.UUID;
/**
* 上傳文件控制器
* 直接上傳到服務(wù)器
* @author 26
* 2019.3.25
*/
@Controller
public class UploadController {
//遇到http://localhost:8080,則跳轉(zhuǎn)到upload.html頁面
@GetMapping("/")
public String index(){
return "upload";
}
@PostMapping("/upload")
public String fileUpload(@RequestParam("file")MultipartFile srcFile,
RedirectAttributes redirectAttributes){
//生成系統(tǒng)時間
SimpleDateFormat sf=new SimpleDateFormat("yyyyMMddHHmmss");
String date=sf.format(new Date());
//前端沒有選擇文件,srcFile為空
if (srcFile.isEmpty()){
redirectAttributes.addFlashAttribute("message", "請選擇一個文件");
return "redirect:upload_status";
}
//選擇了文件塌西,開始進(jìn)行上傳操作
try {
//構(gòu)建上傳目標(biāo)路徑
File destFile=new File(ResourceUtils.getURL("classpath:").getPath());
if (!destFile.exists()){
destFile=new File("");
}
//輸出目標(biāo)文件的絕對路徑
System.out.println("file path:"+destFile.getAbsolutePath());
//使用系統(tǒng)時間文件夾拼接目錄
File upload=new File(destFile.getAbsolutePath(),date);
//若目標(biāo)文件夾不存在,則創(chuàng)建一個
if (!upload.exists()){
upload.mkdirs();
}
//生成UUID碼
String uuid = UUID.randomUUID().toString().replaceAll("-", "");
// 獲得文件原始名稱
String fileName = srcFile.getOriginalFilename();
// 獲得文件后綴名稱
String suffixName = fileName.substring(fileName.lastIndexOf(".") + 1).toLowerCase();
// 生成最新的uuid文件名稱
String newFileName = uuid + "."+ suffixName;
System.out.println("完整的上傳路徑:"+upload.getAbsolutePath()+"/"+newFileName);
//根據(jù)srcFile的大小券册,準(zhǔn)備一個字節(jié)數(shù)組
byte[] bytes=srcFile.getBytes();
//通過項目路徑伤疙,拼接上傳路徑
Path path=Paths.get(upload.getAbsolutePath()+"/"+newFileName);
//最重要的一步,將源文件寫入目標(biāo)地址
Files.write(path,bytes);
//將文件上傳成功的信息寫入messages
redirectAttributes.addFlashAttribute("message", "文件上傳成功!"+newFileName);
} catch (IOException e) {
e.printStackTrace();
}
return "redirect:upload_status";
}
//匹配upload_status頁面
@GetMapping("/upload_status")
public String uploadStatusPage(){
return "upload_status";
}
}
-
在resources的templates下新建upload.html文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Spring Boot文件上傳頁面</title>
</head>
<body>
<form method="post" action="/upload" enctype="multipart/form-data">
<input type="file" name="file">
<input type="submit" value="上傳">
</form>
</body>
</html>
-
同目錄中新建upload_status.html文件
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>文件上傳狀態(tài)顯示</title>
</head>
<body>
<h2>Spring Boot的文件上傳狀態(tài)</h2>
<div th:if="${message}"/>
<h2 th:text="${message}"/>
</body>
</html>
-
運行Application文件兔甘,打開瀏覽器localhost:8080