當前位置:
首頁 > 知識 > Spring Boot 文件上傳

Spring Boot 文件上傳

使用SpringBoot進行文件上傳的方法和SpringMVC差不多,本文單獨新建一個最簡單的DEMO來說明一下。

主要步驟包括:

1、創建一個springboot項目工程,本例名稱(demo-uploadfile)。

2、配置 pom.xml 依賴。

3、創建和編寫文件上傳的 Controller(包含單文件上傳和多文件上傳)。

4、創建和編寫文件上傳的 HTML 測試頁面。

5、文件上傳相關限制的配置(可選)。

6、運行測試。



項目工程截圖如下:

Spring Boot 文件上傳

文件代碼:

<dependencies>

<!-- spring boot web支持 -->

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-web</artifactId>

</dependency>

<!-- thmleaf模板依賴. -->

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-thymeleaf</artifactId>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-test</artifactId>

<scope>test</scope>

</dependency>

</dependencies>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

package com.example.controller;

import java.io.BufferedOutputStream;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import java.util.List;

import javax.servlet.http.HttpServletRequest;

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestMethod;

import org.springframework.web.bind.annotation.RequestParam;

import org.springframework.web.bind.annotation.ResponseBody;

import org.springframework.web.multipart.MultipartFile;

import org.springframework.web.multipart.MultipartHttpServletRequest;

/**

* 文件上傳的Controller

*

* @author 單紅宇(CSDN CATOOP)

* @create 2017年3月11日

*/

@Controller

public class FileUploadController {

// 訪問路徑為://ip:port/upload

@RequestMapping(value = "/upload", method = RequestMethod.GET)

public String upload() {

return "/fileupload";

}

// 訪問路徑為://ip:port/upload/batch

@RequestMapping(value = "/upload/batch", method = RequestMethod.GET)

public String batchUpload() {

return "/mutifileupload";

}

/**

* 文件上傳具體實現方法(單文件上傳)

*

* @param file

* @return

*

* @author 單紅宇(CSDN CATOOP)

* @create 2017年3月11日

*/

@RequestMapping(value = "/upload", method = RequestMethod.POST)

@ResponseBody

public String upload(@RequestParam("file") MultipartFile file) {

if (!file.isEmpty()) {

try {

// 這裡只是簡單例子,文件直接輸出到項目路徑下。

// 實際項目中,文件需要輸出到指定位置,需要在增加代碼處理。

// 還有關於文件格式限制、文件大小限制,詳見:中配置。

BufferedOutputStream out = new BufferedOutputStream(

new FileOutputStream(new File(file.getOriginalFilename())));

out.write(file.getBytes());

out.flush();

out.close();

} catch (FileNotFoundException e) {

e.printStackTrace();

return "上傳失敗," + e.getMessage();

} catch (IOException e) {

e.printStackTrace();

return "上傳失敗," + e.getMessage();

}

return "上傳成功";

} else {

return "上傳失敗,因為文件是空的.";

}

}

/**

* 多文件上傳 主要是使用了MultipartHttpServletRequest和MultipartFile

*

* @param request

* @return

*

* @author 單紅宇(CSDN CATOOP)

* @create 2017年3月11日

*/

@RequestMapping(value = "/upload/batch", method = RequestMethod.POST)

public @ResponseBody String batchUpload(HttpServletRequest request) {

List<MultipartFile> files = ((MultipartHttpServletRequest) request).getFiles("file");

MultipartFile file = null;

BufferedOutputStream stream = null;

for (int i = 0; i < files.size(); ++i) {

file = files.get(i);

if (!file.isEmpty()) {

try {

byte[] bytes = file.getBytes();

stream = new BufferedOutputStream(new FileOutputStream(new File(file.getOriginalFilename())));

stream.write(bytes);

stream.close();

} catch (Exception e) {

stream = null;

return "You failed to upload " + i + " => " + e.getMessage();

}

} else {

return "You failed to upload " + i + " because the file was empty.";

}

}

return "upload successful";

}

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108

package com.example.configuration;

import javax.servlet.MultipartConfigElement;

import org.springframework.boot.web.servlet.MultipartConfigFactory;

import org.springframework.context.annotation.Bean;

/**

* 文件上傳配置

*

* @author 單紅宇(CSDN CATOOP)

* @create 2017年3月11日

*/

public class FileUploadConfiguration {

@Bean

public MultipartConfigElement multipartConfigElement() {

MultipartConfigFactory factory = new MultipartConfigFactory();

// 設置文件大小限制 ,超出設置頁面會拋出異常信息,

// 這樣在文件上傳的地方就需要進行異常信息的處理了;

factory.setMaxFileSize("256KB"); // KB,MB

/// 設置總上傳數據總大小

factory.setMaxRequestSize("512KB");

// Sets the directory location where files will be stored.

// factory.setLocation("路徑地址");

return factory.createMultipartConfig();

}

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

@SpringBootApplication

public class DemoUploadfileApplication {

public static void main(String[] args) {

SpringApplication.run(DemoUploadfileApplication.class, args);

}

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

<!DOCTYPE html>

<html>

<head>

<title>文件上傳示例</title>

</head>

<body>

<h2>文件上傳示例</h2>

<hr/>

<form method="POST" enctype="multipart/form-data" action="/upload">

<p>

文件:<input type="file" name="file" />

</p>

<p>

<input type="submit" value="上傳" />

</p>

</form>

</body>

</html>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

<!DOCTYPE html>

<html>

<head>

<title>批量文件上傳示例</title>

</head>

<body>

<h2>批量文件上傳示例</h2>

<hr/>

<form method="POST" enctype="multipart/form-data"

action="/upload/batch">

<p>

文件1:<input type="file" name="file" />

</p>

<p>

文件2:<input type="file" name="file" />

</p>

<p>

文件3:<input type="file" name="file" />

</p>

<p>

<input type="submit" value="上傳" />

</p>

</form>

</body>

</html>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

最後啟動服務,訪問 http://localhost:8080/upload 和 http://localhost:8080/upload/batch 測試文件上傳。

喜歡這篇文章嗎?立刻分享出去讓更多人知道吧!

本站內容充實豐富,博大精深,小編精選每日熱門資訊,隨時更新,點擊「搶先收到最新資訊」瀏覽吧!


請您繼續閱讀更多來自 程序員小新人學習 的精彩文章:

Python實現樸素貝葉斯演算法
要嫁就嫁程序猿——錢多話少死的早?

TAG:程序員小新人學習 |