时间:2021-05-19
一个简单的springmvc文件上传例子
所需的依赖
只需要这个就好了。在idea的依赖关系图中,commons-fileupload包含了commons-io依赖
<dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.2</version></dependency>一个简单的文件上传的页面
<form action="http://localhost:8080/springmvc_Web_exploded/fff" method="post" enctype="multipart/form-data"> <input type="file" name="file" id="filer_input" multiple="multiple"> <input type="submit" value="Submit"></form>在spring的配置文件中注入一个文件上传的bean
spring.xml
<!-- 文件上传的bean--> <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <!--上传文件的最大大小,单位为字节 --> <property name="maxUploadSize" value="17367648787"></property> <!-- 上传文件的编码 --> <property name="defaultEncoding" value="UTF-8"></property></bean>实例代码
@PostMapping("/fff") public String file(@PathVariable("file")MultipartFile file, HttpServletRequest req) throws IOException { //判断文件不存在 if (file.isEmpty()){ return "faile.html"; } //我想放到这个地方文件的路径 String realPath = req.getServletContext().getRealPath("/WEB-INF/file"); //返回客户端文件系统中的原始文件名 String filename = file.getOriginalFilename(); File myFile = new File(realPath, filename); if (!myFile.getParentFile().exists()){ myFile.getParentFile().mkdir(); System.out.println("文件夹被创建了"); } //将前端传过来的文件,传到自己new的File对象中 file.transferTo(myFile); return "success.html"; }注意事项:
1、文件上传请求必须用post请求。
2、注意路径问题
3、前端的form表单必须添加enctype="multipart/form-data"这个属性
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
个人根据相关资料实现利用SpringMVC和Ajax实现文件上传功能:环境:1.JDK1.72.maven3.3.93.Tomcat7第一步:导入相关jar包:
需求:近期要做大文件上传功能,除了修改前端框架上传控件jQueryUploadify的上传文件限制大小和SpringMVC框架配置的文件上传模块中的Multip
本文实例为大家分享了springmvc实现跨服务器文件上传功能的具体代码,供大家参考,具体内容如下1.创建一个新的maven工程并且部署tomcat,用于做图片
本文为大家分享了js实现文件上传功能的具体代码,供大家参考,具体内容如下XMLHttpRequest上传文件//图片上传varxhr;//上传文件方法funct
Django中上传文件方式。如何实现文件上传功能?1创建项目uploadfile:创建app:front项目设置INSTALLED_APPS中添加'front'