本文章來(lái)自【知識(shí)林】
文件上傳在各種網(wǎng)站平臺(tái)上應(yīng)用都非常廣泛卖氨,這篇文章將講述在Springboot中是如何完成文件上傳的筒捺,Springboot是打包運(yùn)行的系吭,上傳后的文件又該何去何從肯尺?
這篇文章需要用到前面所講的知識(shí)點(diǎn)《Springboot 之 靜態(tài)資源路徑配置》和Thymeleaf相關(guān)的知識(shí)。
- pom.xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
</dependencies>
說(shuō)明:頁(yè)面模板還是使用Thymeleaf,文件上傳工具使用Apache的commons-io
。
- application.properties
此配置可參考《Springboot 之 靜態(tài)資源路徑配置》
server.port=1117
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.cache=false
web.upload-path=D:/temp/upload/study17/
spring.mvc.static-path-pattern=/**
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,\
classpath:/static/,classpath:/public/,file:${web.upload-path}
- Controller控制器
@Controller
public class IndexController {
//獲取上傳的文件夾寨昙,具體路徑參考application.properties中的配置
@Value("${web.upload-path}")
private String uploadPath;
/**
* GET請(qǐng)求
* 上傳頁(yè)面舔哪,也將顯示已經(jīng)存在的文件
* @param model
* @return
*/
@GetMapping(value = "/index")
public String index(Model model) {
//獲取已存在的文件
File [] files = new File(uploadPath).listFiles();
model.addAttribute("files", files);
return "web/index";
}
/**
* POST請(qǐng)求
* @param request
* @param files
* @return
*/
@PostMapping(value = "index")
public String index(HttpServletRequest request, @RequestParam("headimg")MultipartFile[] files) {
//可以從頁(yè)面?zhèn)鲄?shù)過(guò)來(lái)
System.out.println("name====="+request.getParameter("name"));
//這里可以支持多文件上傳
if(files!=null && files.length>=1) {
BufferedOutputStream bw = null;
try {
String fileName = files[0].getOriginalFilename();
//判斷是否有文件且是否為圖片文件
if(fileName!=null && !"".equalsIgnoreCase(fileName.trim()) && isImageFile(fileName)) {
//創(chuàng)建輸出文件對(duì)象
File outFile = new File(uploadPath + "/" + UUID.randomUUID().toString()+ getFileType(fileName));
//拷貝文件到輸出文件對(duì)象
FileUtils.copyInputStreamToFile(files[0].getInputStream(), outFile);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if(bw!=null) {bw.close();}
} catch (IOException e) {
e.printStackTrace();
}
}
}
return "redirect:/index";
}
/**
* 判斷文件是否為圖片文件
* @param fileName
* @return
*/
private Boolean isImageFile(String fileName) {
String [] img_type = new String[]{".jpg", ".jpeg", ".png", ".gif", ".bmp"};
if(fileName==null) {return false;}
fileName = fileName.toLowerCase();
for(String type : img_type) {
if(fileName.endsWith(type)) {return true;}
}
return false;
}
/**
* 獲取文件后綴名
* @param fileName
* @return
*/
private String getFileType(String fileName) {
if(fileName!=null && fileName.indexOf(".")>=0) {
return fileName.substring(fileName.lastIndexOf("."), fileName.length());
}
return "";
}
}
說(shuō)明: @RequestParam("headimg")MultipartFile[] files
這里的headimg
是根據(jù)頁(yè)面上File input
的name
屬性而定炼七。
- index.html
<!DOCTYPE html>
<html lang="zh-CN"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>文件上傳</title>
</head>
<body>
<h2>已有文件:</h2>
<p th:each="file : ${files}">
[站外圖片上傳中……(2)]豌拙,文件名稱(chēng):<span th:text="${file.name}"></span>
</p>
<hr/>
<form method="post" enctype="multipart/form-data">
昵稱(chēng):<input name="name" type="text"/>
<br/>
頭像:<input name="headimg" type="file"/>
<br/>
<button type="submit">確定上傳</button>
</form>
</body>
</html>
注意:<input name="headimg" type="file"/>
這里的headimg
決定了Controller中@RequestParam("headimg")
的值。如果有多個(gè)<input name="headimg" type="file"/>
將是多文件上傳捉超。
- 頁(yè)面截圖
通過(guò)上面例子上傳兩張圖片后的效果:
示例代碼:https://github.com/zsl131/spring-boot-test/tree/master/study17
本文章來(lái)自【知識(shí)林】