本篇文章,我们要来做一个Spring的文件上传功能:
1. 创建一个Maven的web工程,然后配置pom.xml文件,增加依赖:
1
2
3
4
5
|
<dependency> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version> 1.0 . 2 .RELEASE</version>
</dependency> |
2.在webapp目录下的index.jsp文件中输入一个表单:
1
2
3
4
5
6
7
8
9
10
|
<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:
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
|
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 :
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
|
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文件
1
2
3
4
5
6
7
8
9
10
|
<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文件:
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
|
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框架中,文件上传是常见的功能之...总结,Spring文件上传功能强大且灵活,但同时也需要谨慎处理,确保上传过程的安全性和稳定性。理解并熟练运用上述知识点,可以帮助你在实际开发中更好地处理文件上传的需求。
在Spring框架中,文件上传是一项常见的功能,尤其...总之,Spring提供了方便的文件上传支持,通过合理的配置和编程,可以轻松实现安全且高效的文件上传功能。理解并掌握这些知识点对于开发功能丰富的Web应用至关重要。
这样,我们便成功地在Spring Cloud环境中实现了文件上传功能,同时利用了Feign的声明式调用和Zuul的路由与负载均衡能力。 总的来说,通过Spring Cloud的组件,我们可以构建一个高效且可扩展的文件上传系统,它具有...
二、Spring文件上传机制 Spring框架提供了多种方式来实现文件上传,包括使用MultipartFile接口、使用Servlet API等。其中,MultipartFile接口是Spring框架提供的一个接口,用于处理文件上传的请求。该接口提供了...
通过这个“spring 文件上传jar包”,开发者可以快速集成文件上传功能到Spring应用中,从而提高开发效率。当然,除了依赖库,理解和掌握上述知识点也是至关重要的,这样才能在实际项目中得心应手。
采用前后端分离的方式进行开发,实现了几种常用的文件上传功能。 前端采用 vue.js + plupload + element-ui 实现了文件在浏览器端的发送, 后端采用 spring boot + spring + spring mvc + mybatis 实现了文件在服务器...
在Spring框架中,文件上传和下载是常见的功能需求,尤其在构建Web应用程序时。为了实现这一功能,开发者通常会依赖一些外部库,如Apache Commons IO和Apache Commons FileUpload。这两个库提供了强大的文件处理能力...
在项目中,我们需要添加以下依赖以启用文件上传功能: ```xml <groupId>commons-fileupload <artifactId>commons-fileupload <version>1.4 <groupId>commons-io <artifactId>commons-io <version>2.11.0 ...
在本文中,我们将深入探讨如何使用Spring MVC框架与Ajax技术...通过这些步骤,你可以实现一个简单的Spring MVC和Ajax文件上传功能。随着对Spring MVC和Ajax理解的深入,你可以根据实际需求进行更复杂的功能定制和优化。
在Java Spring框架中,文件上传是一项常见的功能,用于...以上就是关于Java Spring文件上传的基本介绍和实现步骤。在实际项目中,还需要根据具体需求进行优化和扩展,比如添加文件预览、文件类型检查、错误处理等功能。
这里我们探讨的主题是“spring文件上传代码”,这涉及到Spring MVC如何处理文件上传请求,以及如何实现通用的Excel导入功能。我们将从Java微服务的视角出发,讨论相关依赖包和关键组件。 1. **文件上传**: - ...
文件上传是Web 程序经常用到的功能,例如MSDN 的资源上传,yahoo邮箱的附件上传,论坛的附件上传等,文件上传的方式有很多种,例如,使用Struts框架实现文件上传,在JSP中使用jspSmartUpload 组件实现文件上传和使用...
在Spring MVC框架中,文件上传是一项常见的功能,而实现文件上传进度条则能提供更好的用户体验。这个场景通常涉及到前端的JavaScript或jQuery库(如jQuery File Upload)与后端的Spring MVC控制器之间的交互,以及...
#### 三、实现文件上传功能 文件上传主要是通过`MultipartFile`类型接收前端传递过来的文件,并使用`transferTo()`方法将文件保存到指定的路径。在上述代码中,我们通过`@RequestParam`注解获取前端传递过来的文件...
在Spring MVC框架中,文件上传和下载是常见的功能需求,特别是在构建Web应用程序时。这个压缩包文件"Spring MVC 文件上传下载 后端 - Java.zip"包含的文档可能详细阐述了如何在Java后端实现这些功能。以下是关于...
Spring MVC 是一个强大的Java web开发框架,用于构建...总结来说,Spring MVC 提供了强大且灵活的文件上传和下载功能,开发者可以根据实际需求进行定制。理解并正确运用这些技术,能够构建出安全、高效的Web应用程序。
在Spring MVC框架中,文件上传是一项常见的功能,无论是普通的文件上传还是通过Ajax实现的异步文件上传,都为用户提供了更好的交互体验。本篇将详细讲解这两种方式的实现原理及步骤。 首先,让我们来理解一下普通...
简单实现了spring上传文件的功能简单实现了spring上传文件的功能简单实现了spring上传文件的功能简单实现了spring上传文件的功能简单实现了spring上传文件的功能简单实现了spring上传文件的功能简单实现了spring上传...
Ajax与Spring框架结合实现文件上传功能涉及到前端页面设计、JavaScript的Ajax调用、以及后端Spring处理上传文件等多个知识点。下面详细解读如何使用这两种技术实现图片文件的上传。 首先,前端页面的设计是文件上传...