MultipartFile上传文件,需要用到MultipartFile接口;因此如果是SpringMVC上使用MultipartFile,那么需要引入相关的依赖,如:

下面介绍SpringBoot中的文件上传

准备工作

第一步 :引入web依赖

第二步 :配置MultipartFile

import javax.servlet.MultipartConfigElement;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.MultipartConfigFactory;
import org.springframework.context.annotation.Bean;
@SpringBootApplication
public class AbcSpringBootUpFileApplication {
	public static void main(String[] args) {
	SpringApplication.run(AbcSpringBootUpFileApplication.class, args);
	 * 对上传文件的配置
	 * @return MultipartConfigElement配置实例
	 * @date 2018年6月29日 上午10:55:02
	@Bean
	public MultipartConfigElement multipartConfigElement() {
		MultipartConfigFactory factory = new MultipartConfigFactory();
		// 设置单个附件大小上限值(默认为1M)
		//选择字符串作为参数的话,单位可以用MB、KB;
		factory.setMaxFileSize("50MB");
		// 设置所有附件的总大小上限值
		factory.setMaxRequestSize("250MB");
		return factory.createMultipartConfig();

注:也可以直接在配置文件中设置附件大小上限等限制。

编写(前端)后端代码

单文件上传

<form method="post" action="http://localhost:9876/file/upload" enctype="multipart/form-data">
    <input name = "fileName" type = "file"><br>
   <input type = "submit" value = "点击上传">
</form>
import java.io.File;
import java.io.IOException;
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.RestController;
import org.springframework.web.multipart.MultipartFile;
@RestController
public class UpFileController {
	 * 单文件上传(简单demo)
	 * @param file
	 *            接收到的文件
	 * @date 2018年6月29日 上午10:56:05
	@RequestMapping(value = "/file/upload", method = RequestMethod.POST)
	public void fileUpload(@RequestParam("fileName") MultipartFile file) {
		// 先设定一个放置上传文件的文件夹(该文件夹可以不存在,下面会判断创建)
		String deposeFilesDir = "C:\\Users\\dengshuai.ASPIRE\\Desktop\\file\\";
       // 判断文件手否有内容
		if (file.isEmpty()) {
			System.out.println("该文件无任何内容!!!");
		// 获取附件原名(有的浏览器如chrome获取到的是最基本的含 后缀的文件名,如myImage.png)
		// 获取附件原名(有的浏览器如ie获取到的是含整个路径的含后缀的文件名,如C:\\Users\\images\\myImage.png)
		String fileName = file.getOriginalFilename();
		// 如果是获取的含有路径的文件名,那么截取掉多余的,只剩下文件名和后缀名
		int index = fileName.lastIndexOf("\\");
		if (index > 0) {
			fileName = fileName.substring(index + 1);
		// 判断单个文件大于1M
		long fileSize = file.getSize();
		if (fileSize > 1024 * 1024) {
			System.out.println("文件大小为(单位字节):" + fileSize);
			System.out.println("该文件大于1M");
		// 当文件有后缀名时
		if (fileName.indexOf(".") >= 0) {
			// split()中放正则表达式; 转义字符"\\."代表 "."
			String[] fileNameSplitArray = fileName.split("\\.");
			// 加上random戳,防止附件重名覆盖原文件
			fileName = fileNameSplitArray[0] + (int) (Math.random() * 100000) + "." + fileNameSplitArray[1];
		// 当文件无后缀名时(如C盘下的hosts文件就没有后缀名)
		if (fileName.indexOf(".") < 0) {
			// 加上random戳,防止附件重名覆盖原文件
			fileName = fileName + (int) (Math.random() * 100000);
		System.out.println("fileName:" + fileName);
		// 根据文件的全路径名字(含路径、后缀),new一个File对象dest
		File dest = new File(deposeFilesDir + fileName);
		// 如果该文件的上级文件夹不存在,则创建该文件的上级文件夹及其祖辈级文件夹;
		if (!dest.getParentFile().exists()) {
			dest.getParentFile().mkdirs();
		try {
			// 将获取到的附件file,transferTo写入到指定的位置(即:创建dest时,指定的路径)
			file.transferTo(dest);
		} catch (IllegalStateException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		System.out.println("文件的全路径名字(含路径、后缀)>>>>>>>" + deposeFilesDir + fileName);

注:SpringBoot存放上传文件时,一般都是将文件放在一个绝对路径下(因为其是内部集成了Tomcat,所以一般都
       是放在外面某个文件夹下);那如果有时我们想获取到相对路径的话,我们可以这么[获取项
       目下classes目录路径]:ResourceUtils.getURL("classpath:").getPath();

注:ResourceUtils是springframework的工具类之一。

多文件上传

<form method="post" action="http://localhost:9876/file/mulFileUpload" enctype="multipart/form-data">
   <!-- ,那么这些input按钮的name要一样-->
   <input name = "fileName" multiple="multiple" type = "file"><br>
   <!--如果是多个file输入控件,那么这些input按钮的name要一样-->
    <input name = "fileName" type = "file"><br>
   <input name = "fileName" type = "file"><br>
   <input name = "fileName" type = "file"><br>
   <input type = "submit" value = "点击上传">
</form>

原理说明:在单文件上传的基础上,将MultipartFile 换为数组MultipartFile [],循环遍历即可。

* 多文件上传(简单demo) * @param files * 文件数组 * @throws IOException * @date 2018年6月29日 下午12:57:01 @RequestMapping(value = "/file/mulFileUpload", method = RequestMethod.POST) public void mulFileUpload(@RequestParam("fileName") MultipartFile[] files) { // 先设定一个放置上传文件的文件夹(该文件夹可以不存在,下面会判断创建) String deposeFilesDir = "C:\\Users\\dengshuai.ASPIRE\\Desktop\\file\\"; for (MultipartFile file : files) { // 判断文件是否有内容 if (file.isEmpty()) { System.out.println("该文件无任何内容!!!"); // 获取附件原名(有的浏览器如chrome获取到的是最基本的含 后缀的文件名,如myImage.png) // 获取附件原名(有的浏览器如ie获取到的是含整个路径的含后缀的文件名,如C:\\Users\\images\\myImage.png) String fileName = file.getOriginalFilename(); // 如果是获取的含有路径的文件名,那么截取掉多余的,只剩下文件名和后缀名 if (fileName.indexOf("\\") > 0) { int index = fileName.lastIndexOf("\\"); fileName = fileName.substring(index + 1); // 判断单个文件大于1M long fileSize = file.getSize(); if (fileSize > 1024 * 1024) { System.out.println("文件大小为(单位字节):" + fileSize); System.out.println("该文件大于1M"); // 当文件有后缀名时 if (fileName.indexOf(".") >= 0) { // split()中放正则表达式; 转义字符"\\."代表 "." String[] fileNameSplitArray = fileName.split("\\."); // 加上random戳,防止附件重名覆盖原文件 fileName = fileNameSplitArray[0] + (int) (Math.random() * 100000) + "." + fileNameSplitArray[1]; // 当文件无后缀名时(如C盘下的hosts文件就没有后缀名) if (fileName.indexOf(".") < 0) { // 加上random戳,防止附件重名覆盖原文件 fileName = fileName + (int) (Math.random() * 100000); System.out.println("fileName:" + fileName); // 根据文件的全路径名字(含路径、后缀),new一个File对象dest File dest = new File(deposeFilesDir + fileName); // 如果pathAll路径不存在,则创建相关该路径涉及的文件夹; if (!dest.getParentFile().exists()) { dest.getParentFile().mkdirs(); try { // 将获取到的附件file,transferTo写入到指定的位置(即:创建dest时,指定的路径) file.transferTo(dest); } catch (IllegalStateException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); System.out.println("文件的全路径名字(含路径、后缀)>>>>>>>" + deposeFilesDir + fileName);

不论是单文件还是多文件,我们在上传文件的时候,还可以传递其他的一些参数,如:

那么后端对应为:

笔者寄语上述的只是最基本的示例,在真正使用时,还要灵活处理日志、异常等问题。

^_^ 如有不当之处,欢迎指正

^_^ 代码托管链接
              https://github.com/JustryDeng/PublicRepository

^_^ 本文已经被收录进《程序员成长笔记(二)》,笔者JustryDeng

<groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.1.8.RELEASE</version> 今晚在做项目时,项目用到了CommonsMultipartFile的对象,这是一个Spring自带的文件流。 当我写好代码后,启动项目却报错了。第一行异常代码是bean创建异常: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'shopServiceImpl' de... HttpMessageConverter是报文信息转换器,可以将请求报文转换为Java对象(RequestEntity), 或将Java对象(ResponseEntity)转换为响应报文。 错误信息:The temporary upload location[C:\Users\……]is not valid原因:之前运行良好是因为,springboot启动时会创建一个/tmp/tomcat.7*/work/Tomcat/localhost/ROOT的临时目录作为文件上传的临时目录,但是该目录会在10天之后被系统自动清理掉。解决办法:1 重启项目,系统会自动重新生成该目录2 手动创建该... SpringBoot后台如何实现文件上传下载? 最近做的一个项目涉及到文件上传与下载。前端上传采用百度webUploader插件。有关该插件的使用方法还在研究,日后整理再记录。本文主要介绍SpringBoot后台对文件上传与下载的处理。 MultipartConfig配置 import org.springframework.boot.web.servlet.MultipartConfigFactory; import org.springframework.context.annotation package com.example.demo.controller; import org.springframework.boot.web.servlet.MultipartConfigFactory; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.stereotype. * @date 2014年9月25日 public void uploads(MultipartFile[] files, String destDir, HttpServletRequest request) .