栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

SpringMVC 单文件,多文件上传实现详解

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

SpringMVC 单文件,多文件上传实现详解

需要用到的流的相关知识:https://www.jb51.net/article/170640.htm

SpringMVC中写好了文件上传的类。

要使用文件上传,首先需要文件上传相关的Jar包。commons-fileupload.jar 和 commons-io.jar。

添加到pom.xml或lib文件夹下。

pom.xml:


      commons-fileupload
      commons-fileupload
      1.3.1
    
    
      commons-io
      commons-io
      2.4
    

在SprigMVC的配置文件中添加bean(id和class都是固定写法):

  
    
    
  

前端写一个单文件上传的表单,一个多文件上传的表单(多文件上传的表单中,多个文件输入input中的name相同):




文件上传中,参数要使用MultipartFile而不是File类,不能使用FileUtils.copyFile()来复制文件,因此使用流来输出到磁盘

单文件多文件只是将单文件中传递来的file参数改为数组形式,将方法内的file有关的操作都变为数组即可。

单文件上传

也可以不使用流,下面这句看到有人使用,但是没有测试。

File dest = new File(filePath + fileName); file.transferTo(dest);

@RequestMapping("testUpload")
  public String testUpload(@RequestParam("desc") String desc, @RequestParam("file") MultipartFile file) throws IOException {
    System.out.println("文件描述:" + desc);
    // 得到文件的输入流
    InputStream inputStream = file.getInputStream();
    // 得到文件的完整名字 img.png/hh.docx
    String fileName = file.getOriginalFilename();
    // 输出流
    OutputStream outputStream = new FileOutputStream("C:\tmp\" + fileName);
    // 缓冲区
    byte[] bs = new byte[1024];
    int len = -1;
    while ((len = inputStream.read(bs)) != -1) {
      outputStream.write(bs,0,len);
    }
    inputStream.close();
    outputStream.close();
    return "success";
  }

多文件上传

@RequestMapping("testMutiUpload")
  public String testMutiUpload(@RequestParam("desc") String desc, @RequestParam("file") MultipartFile[] files) throws IOException {
    System.out.println("文件描述:" + desc);
    for (MultipartFile file :
 files) {
      InputStream inputStream = file.getInputStream();
      String fileName = file.getOriginalFilename();
      OutputStream outputStream = new FileOutputStream("C:\tmp\" + fileName);
      byte[] bs = new byte[1024];
      int len = -1;
      while ((len = inputStream.read(bs)) != -1) {
 outputStream.write(bs,0,len);
      }
      inputStream.close();
      outputStream.close();
    }
    return "success";
  }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/136966.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号