springmvc实现文件上传功能
更新时间:2021年03月16日 16:35:55 作者:爱吃番茄的小狐狸
这篇文章主要为大家详细介绍了springmvc实现文件上传功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
一个简单的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" 这个属性
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
SpringBoot2.0整合jackson配置日期格式化和反序列化的实现
这篇文章主要介绍了SpringBoot2.0整合jackson配置日期格式化和反序列化的实现,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-11-11Mapper.xml中查询返回带有List属性的实体类结果问题
这篇文章主要介绍了Mapper.xml中查询返回带有List属性的实体类结果问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2023-06-06Struts2中Action三种接收参数形式与简单的表单验证功能
本文以登录验证为例,进行代码展示,下面给大家详细介绍Struts2中Action三种接收参数形式与简单的表单验证功能,需要的朋友参考下2017-03-03mybatis动态新增(insert)和修改(update)方式
这篇文章主要介绍了mybatis动态新增(insert)和修改(update)方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教2024-05-05
最新评论