SpringBoot實現文件上傳與下載功能的示例代碼
Spring Boot文件上傳與下載
在實際的Web應用開發中,為瞭成功上傳文件,必須將表單的method設置為post,並將enctype設置為multipart/form-data。隻有這種設置,瀏覽器才能將所選文件的二進制數據發送給服務器。
從Servlet 3.0開始,就提供瞭處理文件上傳的方法,但這種文件上傳需要在Java Servlet中完成,而Spring MVC提供瞭更簡單的封裝。Spring MVC是通過Apache Commons FileUpload技術實現一個MultipartResolver的實現類CommonsMultipartResolver完成文件上傳的。因此,Spring MVC的文件上傳需要依賴Apache Commons FileUpload組件。
Spring MVC將上傳文件自動綁定到MultipartFile對象中,MultipartFile提供瞭獲取上傳文件內容、文件名等方法,並通過transferTo方法將文件上傳到服務器的磁盤中,MultipartFile的常用方法如下:
- byte[] getBytes():獲取文件數據。
- String getContentType():獲取文件MIME類型,如image/jpeg等。
- InputStream getInputStream():獲取文件流。
- String getName():獲取表單中文件組件的名字。
- String getOriginalFilename():獲取上傳文件的原名。
- long getSize():獲取文件的字節大小,單位為byte。
- boolean isEmpty():是否有(選擇)上傳文件。
- void transferTo(File dest):將上傳文件保存到一個目標文件中。
Spring Boot的spring-boot-starter-web已經集成瞭Spring MVC,所以使用Spring Boot實現文件上傳,更加便捷,隻需要引入Apache Commons FileUpload組件依賴即可。
舉例說明
下面通過一個實例講解Spring Boot文件上傳與下載的實現過程。
【例7】Spring Boot文件上傳與下載。
具體實現步驟如下。
1.引入Apache Commons FileUpload組件依賴
在Web應用ch7_2的pom.xml文件中,添加Apache Commons FileUpload組件依賴,具體代碼如下:
<dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <!-- 由於commons-fileupload組件不屬於Spring Boot,所以需要加上版本 --> <version>1.4</version> </dependency>
2.設置上傳文件大小限制
在Web應用ch7_2的配置文件application.properties中,添加如下配置進行限制上傳文件大小。
#上傳文件時,默認單個上傳文件大小是1MB,max-file-size設置單個上傳文件大小 spring.servlet.multipart.max-file-size=50MB #默認總文件大小是10MB,max-request-size設置總上傳文件大小 spring.servlet.multipart.max-request-size=500MB
3.創建選擇文件視圖頁面
在ch7_2應用的src/main/resources/templates目錄下,創建選擇文件視圖頁面uploadFile.html。該頁面中有個enctype屬性值為multipart/form-data的form表單,具體代碼如下:
<!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Insert title here</title> <link rel="stylesheet" th:href="@{css/bootstrap.min.css}" /> <!-- 默認訪問 src/main/resources/static下的css文件夾--> <link rel="stylesheet" th:href="@{css/bootstrap-theme.min.css}" /> </head> <body> <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">文件上傳示例</h3> </div> </div> <div class="container"> <div class="row"> <div class="col-md-6 col-sm-6"> <form class="form-horizontal" action="upload" method="post" enctype="multipart/form-data"> <div class="form-group"> <div class="input-group col-md-6"> <span class="input-group-addon"> <i class="glyphicon glyphicon-pencil"></i> </span> <input class="form-control" type="text" name="description" th:placeholder="文件描述"/> </div> </div> <div class="form-group"> <div class="input-group col-md-6"> <span class="input-group-addon"> <i class="glyphicon glyphicon-search"></i> </span> <input class="form-control" type="file" name="myfile" th:placeholder="請選擇文件"/> </div> </div> <div class="form-group"> <div class="col-md-6"> <div class="btn-group btn-group-justified"> <div class="btn-group"> <button type="submit" class="btn btn-success"> <span class="glyphicon glyphicon-share"></span> 上傳文件 </button> </div> </div> </div> </div> </form> </div> </div> </div> </body> </html>
4.創建控制器
在ch7_2應用的com.ch.ch7_2.controller包中,創建控制器類TestFileUpload。在該類中有4個處理方法,一個是界面導航方法uploadFile,一個是實現文件上傳的upload方法,一個是顯示將要被下載文件的showDownLoad方法,一個是實現下載功能的download方法。核心代碼如下:
@Controller public class TestFileUpload { @RequestMapping("/uploadFile") public String uploadFile() { return "uploadFile"; } /** * 上傳文件自動綁定到MultipartFile對象中, * 在這裡使用處理方法的形參接收請求參數。 */ @RequestMapping("/upload") public String upload( HttpServletRequest request, @RequestParam("description") String description, @RequestParam("myfile") MultipartFile myfile) throws IllegalStateException, IOException { System.out.println("文件描述:" + description); //如果選擇瞭上傳文件,將文件上傳到指定的目錄uploadFiles if(!myfile.isEmpty()) { //上傳文件路徑 String path = request.getServletContext().getRealPath("/uploadFiles/"); //獲得上傳文件原名 String fileName = myfile.getOriginalFilename(); File filePath = new File(path + File.separator + fileName); //如果文件目錄不存在,創建目錄 if(!filePath.getParentFile().exists()) { filePath.getParentFile().mkdirs(); } //將上傳文件保存到一個目標文件中 myfile.transferTo(filePath); } //轉發到一個請求處理方法,查詢將要下載的文件 return "forward:/showDownLoad"; } /** * 顯示要下載的文件 */ @RequestMapping("/showDownLoad") public String showDownLoad(HttpServletRequest request, Model model) { String path = request.getServletContext().getRealPath("/uploadFiles/"); File fileDir = new File(path); //從指定目錄獲得文件列表 File filesList[] = fileDir.listFiles(); model.addAttribute("filesList", filesList); return "showFile"; } /** * 實現下載功能 */ @RequestMapping("/download") public ResponseEntity<byte[]> download( HttpServletRequest request, @RequestParam("filename") String filename, @RequestHeader("User-Agent") String userAgent) throws IOException { //下載文件路徑 String path = request.getServletContext().getRealPath("/uploadFiles/"); //構建將要下載的文件對象 File downFile = new File(path + File.separator + filename); //ok表示HTTP中的狀態是200 BodyBuilder builder = ResponseEntity.ok(); //內容長度 builder.contentLength(downFile.length()); //application/octet-stream:二進制流數據(最常見的文件下載) builder.contentType(MediaType.APPLICATION_OCTET_STREAM); //使用URLEncoder.encode對文件名進行編碼 filename = URLEncoder.encode(filename,"UTF-8"); /** * 設置實際的響應文件名,告訴瀏覽器文件要用於“下載”和“保存”。 * 不同的瀏覽器,處理方式不同,根據瀏覽器的實際情況區別對待。 */ if(userAgent.indexOf("MSIE") > 0) { //IE瀏覽器,隻需要用UTF-8字符集進行URL編碼 builder.header("Content-Disposition", "attachment; filename=" + filename); }else { /**非IE瀏覽器,如FireFox、Chrome等瀏覽器,則需要說明編碼的字符集 * filename後面有個*號,在UTF-8後面有兩個單引號 */ builder.header("Content-Disposition", "attachment; filename*=UTF-8''" + filename); } return builder.body(FileUtils.readFileToByteArray(downFile)); } }
5.創建文件下載視圖頁面
在ch7_2應用的src/main/resources/templates目錄下,創建文件下載視圖頁面showFile.html。核心代碼如下:
<body> <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">文件下載示例</h3> </div> </div> <div class="container"> <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">文件列表</h3> </div> <div class="panel-body"> <div class="table table-responsive"> <table class="table table-bordered table-hover"> <tbody class="text-center"> <tr th:each="file,fileStat:${filesList}"> <td> <span th:text="${fileStat.count}"></span> </td> <td> <!--file.name相當於調用getName()方法獲得文件名稱 --> <a th:href="@{download(filename=${file.name})}"> <span th:text="${file.name}"></span> </a> </td> </tr> </tbody> </table> </div> </div> </div> </div> </body>
6.運行
首先,運行Ch72Application主類。然後,訪問http://localhost:8080/ch7_2/uploadFile測試文件上傳與下載。
以上就是SpringBoot實現文件上傳與下載功能的示例代碼的詳細內容,更多關於SpringBoot文件上傳 下載的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- SpringBoot文件上傳與下載功能實現詳解
- springmvc實現文件上傳功能
- 解決feign微服務間的文件上傳報錯問題
- Spring Boot 2.x 實現文件上傳功能
- spring boot實現文件上傳