SpringMVC文件上传的方法介绍(代码)
本篇文章给大家带来的内容是关于SpringMVC文件上传的方法介绍(代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
SpringMVC为文件上传提供了直接的支持,这种支持是用即插即用的MultipartResolver实现的。SpringMVC使用Apache Commons FileUpload技术实现了一个MultipartResolver实现类:CommonsMultipartResolver。因此,SpringMVC的文件上传还需要依赖Apache Commons FileUpload的组件。
1. 添加pom依赖
<dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.2</version> </dependency>
2. 配置文件上传bean
在spring mvc配置文件中增加一个文件上传bean。
<!-- SpringMVC上传文件时,需要配置MultipartResolver处理器 --> <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <property name="defaultEncoding" value="UTF-8" /> </bean>
3.文件上传
文件上传是项目开发中最常见的功能。为了能上传文件,必须将表单的method设置为POST,并将enctype设置为multipart/form-data。只有在这样的情况下,浏览器才会把用户选择的文件以二进制数据发送给服务器。
上传文件界面:upload_form.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>文件上传</title> </head> <body> <!-- 上传单个对象 注意表单的method属性设为post,enctype属性设为multipart/form-data --> <form method="POST" action="/SpringMVCDemo1/upload" enctype="multipart/form-data"> <input type="file" name="file" /><br/><br/> <input type="submit" value="上传" /> </form> <!-- 上传多个对象 注意表单的method属性设为post,enctype属性设为multipart/form-data --> <form method="POST" action="/SpringMVCDemo1/uploadMultiFiles" enctype="multipart/form-data"> <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="text" name="userName" /></p> <p>密码:<input type="password" name="password" /></p> <p><input type="submit" value="上传" /></p> </form> </body> </html>
上传结果返回界面:upload_result.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <h2>上传结果为:${message}</h2> </body> </html>
注意:要提前创建好存储文件的文件夹,比如我的路径为:"D:staticResourcesTestimgupload"。
FileController.java
@Controller @RequestMapping("/SpringMVCDemo1") public class FileController { /** * 跳转到上传页面 * @GetMapping 是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。 */ @GetMapping("/gotoUploadForm") public String index() { return "/upload_form.jsp"; } /** * 上传单个文件 * 通过MultipartFile读取文件信息,如果文件为空跳转到结果页并给出提示; * 如果不为空读取文件流并写入到指定目录,最后将结果展示到页面 * @param multipartFile * @PostMapping 是一个组合注解,是@RequestMapping(method = RequestMethod.POST)的缩写。 */ @PostMapping("/upload") public String uploadSingleFile(@RequestParam("file") MultipartFile multipartFile, HttpServletRequest request){ if (multipartFile.isEmpty()){ request.setAttribute("message", "Please select a file to upload '"); return "/upload_result.jsp"; } try { String contentType = multipartFile.getContentType(); String originalFilename = multipartFile.getOriginalFilename(); byte[] bytes = multipartFile.getBytes(); System.out.println("上传文件名为-->" + originalFilename); System.out.println("上传文件类型为-->" + contentType); System.out.println("上传文件大小为-->"+bytes.length); //filePath为存储路径 String filePath = "d:/staticResourcesTest"; System.out.println("filePath-->" + filePath); //存储在staticResourcesTest下的imgupload文件夹下 File parentPath = new File(filePath, "imgupload"); System.out.println("上传目的地为-->"+parentPath.getAbsolutePath()); try { File destFile = new File(parentPath,originalFilename);//上传目的地 FileUtils.writeByteArrayToFile(destFile,multipartFile.getBytes()); } catch (Exception e) { e.printStackTrace(); } request.setAttribute("message", "You successfully uploaded '" + multipartFile.getOriginalFilename() + "'"); } catch (IOException e) { e.printStackTrace(); } return "/upload_result.jsp"; } /** * 上传多个文件,同时接受业务数据 * @param origFiles * @param request * @param user * @return */ @PostMapping("/uploadMultiFiles") public String uploadMultiFiles(@RequestParam("file") List<MultipartFile> origFiles, HttpServletRequest request, User user) { //User为实体类 System.out.println("User=="+user); if (origFiles.isEmpty()) { request.setAttribute("message", "Please select a file to upload '"); return "/upload_result.jsp"; } try { for (MultipartFile origFile : origFiles) { String contentType = origFile.getContentType(); String fileName = origFile.getOriginalFilename(); byte[] bytes = origFile.getBytes(); System.out.println("上传文件名为-->" + fileName); System.out.println("上传文件类型为-->" + contentType); System.out.println("上传文件大小为-->"+bytes.length); String filePath = "d:/staticResourcesTest"; System.out.println("上传目的地为-->"+filePath); try { //上传目的地(staticResourcesTest文件夹下) File destFile = new File(filePath,fileName); FileUtils.writeByteArrayToFile(destFile,origFile.getBytes()); } catch (Exception e) { e.printStackTrace(); } } request.setAttribute("message", "You successfully uploaded '"); } catch (IOException e) { e.printStackTrace(); } return "/upload_result.jsp"; } }
本篇文章到这里就已经全部结束了,更多其他精彩内容可以关注PHP中文网的Java教程视频栏目!
以上是SpringMVC文件上传的方法介绍(代码)的详细内容。更多信息请关注PHP中文网其他相关文章!

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

热门话题

Java 8引入了Stream API,提供了一种强大且表达力丰富的处理数据集合的方式。然而,使用Stream时,一个常见问题是:如何从forEach操作中中断或返回? 传统循环允许提前中断或返回,但Stream的forEach方法并不直接支持这种方式。本文将解释原因,并探讨在Stream处理系统中实现提前终止的替代方法。 延伸阅读: Java Stream API改进 理解Stream forEach forEach方法是一个终端操作,它对Stream中的每个元素执行一个操作。它的设计意图是处

Java是热门编程语言,适合初学者和经验丰富的开发者学习。本教程从基础概念出发,逐步深入讲解高级主题。安装Java开发工具包后,可通过创建简单的“Hello,World!”程序实践编程。理解代码后,使用命令提示符编译并运行程序,控制台上将输出“Hello,World!”。学习Java开启了编程之旅,随着掌握程度加深,可创建更复杂的应用程序。
