转自:
http://www.cnblogs.com/rollenholt/p/3693087.html
1. 创建一个Maven的web工程,然后配置pom.xml文件,增加依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>1.0.2.RELEASE</version>
</dependency>
2. 在webapp目录下的index.jsp文件中输入一个表单:
<html>
<body>
<form method="POST" enctype="multipart/form-data"
action="/upload">
File to upload: <input type="file" name="file"><br /> Name: <input
type="text" name="name"><br /> <br /> <input type="submit"
value="Upload"> Press here to upload the file!
</form>
</body>
</html>
这个表单就是我们模拟的上传页面
3. 编写处理这个表单的Controller:
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
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;
@Controller
public class FileUploadController {
@RequestMapping(value="/upload", method=RequestMethod.GET)
public @ResponseBody String provideUploadInfo() {
return "You can upload a file by posting to this same URL.";
}
@RequestMapping(value="/upload", method=RequestMethod.POST)
public @ResponseBody String handleFileUpload(@RequestParam("name") String name,
@RequestParam("file") MultipartFile file){
if (!file.isEmpty()) {
try {
byte[] bytes = file.getBytes();
BufferedOutputStream stream =
new BufferedOutputStream(new FileOutputStream(new File(name + "-uploaded")));
stream.write(bytes);
stream.close();
return "You successfully uploaded " + name + " into " + name + "-uploaded !";
} catch (Exception e) {
return "You failed to upload " + name + " => " + e.getMessage();
}
} else {
return "You failed to upload " + name + " because the file was empty.";
}
}
}
4. 然后我们对上传的文件做一些限制,同时编写main方法来启动这个web :
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.context.embedded.MultiPartConfigFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import javax.servlet.MultipartConfigElement;
@Configuration
@ComponentScan
@EnableAutoConfiguration
public class Application {
@Bean
public MultipartConfigElement multipartConfigElement() {
MultiPartConfigFactory factory = new MultiPartConfigFactory();
factory.setMaxFileSize("128KB");
factory.setMaxRequestSize("128KB");
return factory.createMultipartConfig();
}
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
5. 然后访问http://localhost:8080/upload就可以看到页面了。
上面的例子是实现的是单个文件上传的功能,假定我们现在要实现文件批量上传的功能的话,我们只需要简单的修改一下上面的代码就行,考虑到篇幅的问题,下面只是贴出和上面不同的代码,没有贴出的说明和上面一样。:
1. 新增batchUpload.jsp文件
<html>
<body>
<form method="POST" enctype="multipart/form-data"
action="/batch/upload">
File to upload: <input type="file" name="file"><br />
File to upload: <input type="file" name="file"><br />
<input type="submit" value="Upload"> Press here to upload the file!
</form>
</body>
</html>
2. 新增BatchFileUploadController.java文件:
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.ResponseBody;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;
import javax.servlet.http.HttpServletRequest;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.util.List;
/**
* Created by wenchao.ren on 2014/4/26.
*/
@Controller
public class BatchFileUploadController {
@RequestMapping(value="/batch/upload", method= RequestMethod.POST)
public @ResponseBody
String handleFileUpload(HttpServletRequest request){
List<MultipartFile> files = ((MultipartHttpServletRequest)request).getFiles("file");
for (int i =0; i< files.size(); ++i) {
MultipartFile file = files.get(i);
String name = file.getName();
if (!file.isEmpty()) {
try {
byte[] bytes = file.getBytes();
BufferedOutputStream stream =
new BufferedOutputStream(new FileOutputStream(new File(name + i)));
stream.write(bytes);
stream.close();
} catch (Exception e) {
return "You failed to upload " + name + " => " + e.getMessage();
}
} else {
return "You failed to upload " + name + " because the file was empty.";
}
}
return "upload successful";
}
}
这样一个简单的批量上传文件的功能就ok了,是不是很简单啊。
注意:上面的代码只是为了演示而已,所以编码风格上采取了随性的方式,不建议大家模仿。
参考资料:
1. MultipartResolver也可以实现文件上传功能。参考文章:
http://mylfd.iteye.com/blog/1893648
分享到:
相关推荐
spring-boot-file-upload:使用Spring Boot 上传文件示例 spring-boot-fastDFS:Spring Boot 整合FastDFS示例 spring-boot-actuator:Spring Boot Actuator 使用示例 spring-boot-admin-simple:Spring Boot Admin ...
第 2-7 课:使用 Spring Boot 上传文件到 FastDFS/spring-boot-fastDFS 第 2-8 课: Spring Boot 构建一个 RESTful Web 服务/spring-boot-web-restful 第 2-9 课:Spring Boot 中使用 Swagger2 构建 RESTful APIs/...
- 文件上传:提供了对文件上传的集成支持。 - 缓存集成:支持集成各种缓存框架,如Redis、EHCache等。 3. 高级特性: - Spring Boot Starter:Starter是一组相关的依赖描述符,这些依赖可以一起使用。文档中介绍了...
通过这55个集成示例,开发者可以深入学习Spring Boot的各种用法,包括如何集成WebSocket、定时任务、缓存、邮件服务、任务调度、文件上传下载等常见功能。此外,还可以了解到如何使用Spring Boot构建微服务、实现API...
- [spring-boot-file-upload](https://github.com/ityouknow/spring-boot-examples/tree/master/spring-boot-file-upload):使用 Spring Boot 上传文件示例 - [spring-boot-fastDFS]...
3. **嵌入式服务器**:Spring Boot支持嵌入式Tomcat、Jetty或Undertow,无需打包WAR文件上传到外部容器中。 4. **自动配置**:Spring Boot会根据你添加的依赖来自动配置你的应用。 5. **启动项**:Spring Boot提供了...
在本教程中,我们将深入探讨如何使用Spring Boot实现文件上传功能,特别是多文件上传。Spring Boot简化了在Java应用程序中处理文件上传的过程,使得开发者能够更专注于业务逻辑,而不是底层的HTTP操作。以下是对该...
在Spring Boot框架中,文件上传是一项常见的功能,它允许用户通过Web应用程序上传各种类型的文件,如图片、文档等。在本实例中,我们将探讨如何在Spring Boot中实现一个简单的文件上传功能。 首先,我们需要在...
Spring Boot(十一)—文件上传和下载 文件上传和下载是Web应用程序比较常用的功能之一,在本章节中,我将以一个简单的案例案例解压缩在Spring Boot中如何进行文件的上传与下载。思维导图来了解一下文件上传与下载的...
- **服务器部署**:将构建好的 JAR 文件上传至服务器,并使用命令行启动。 #### 七、进一步学习 1. **Spring Boot 官方文档**:Spring Boot 官方提供了非常详尽的文档和示例,涵盖了从基础到高级的所有知识点。 2...
知识点1:Spring Boot文件服务器搭建 Spring Boot框架提供了强大的文件上传和下载功能,可以轻松地搭建文件服务器。通过使用@Spring Boot的注解例如@RestController、@Configuration等,开发者可以快速搭建文件...
3. **自动配置(Auto Configuration)**:Spring Boot根据类路径下的jar文件和配置文件自动配置Bean。学习如何利用自动配置来快速搭建环境,例如Web应用、数据访问层等。 4. **嵌入式Web服务器**:Spring Boot支持...
然后,我们可以使用 Spring Boot 的 @ConfigurationProperties 注解来加载配置文件: ```java / * FTP 的配置信息 * @Auther: hrabbit * @Date: 2018-12-03 2:06 PM * @Description: */ @Data @...
在本项目"Spring boot简单登录与文件上传.zip"中,主要展示了如何利用Java的Spring Boot框架结合HTML来构建一个基础的用户登录系统以及文件上传功能。以下是对该项目中涉及的关键技术点的详细解释: 1. **Spring ...
Spring Boot的灵活性使得开发者可以轻松地配置这些端点,例如使用`@PostMapping`注解来处理文件上传,然后调用转换服务进行转换。 对于文件转换,这个项目可能依赖于第三方库,如Apache POI用于处理Office文档,...
MinIO 是一个基于Apache License v2.0开源协议的对象存储服务。它兼容亚马逊S3云存储服务接口,非常适合于存储大容量非结构化的数据,例如图片、视频、日志文件、备份数据和...Spring boot整合MinIO客户端实现文件管理
总的来说,理解Spring Boot文件上传原理的关键在于掌握Spring MVC的`MultipartResolver`接口及其实现,以及如何在Spring Boot中配置和使用这些组件来处理文件上传请求。这使得开发者能够安全有效地处理用户上传的...
Spring Boot文件上传/下载Rest API示例 教程: 设定步骤 1.克隆存储库 git clone https://github.com/callicoder/spring-boot-file-upload-download-rest-api-example.git 2.指定文件上传目录 打开src/main/...
### Java Spring Boot应用程序中实现文件上传和下载功能 在现代Web开发中,文件上传与下载是常见的需求之一。Spring Boot框架提供了简洁的方式帮助开发者轻松实现这些功能。本文将详细介绍如何在Spring Boot项目中...