欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

springmvc实现文件上传功能

时间:2022-12-10 12:10:10|栏目:JAVA代码|点击:

一个简单的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" 这个属性

上一篇:使用shardingsphere对SQLServer坑的解决

栏    目:JAVA代码

下一篇:如何通过Java实现修改视频分辨率

本文标题:springmvc实现文件上传功能

本文地址:http://www.codeinn.net/misctech/221046.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有