微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

这篇文章主要介绍了SpringMVC 单文件,多文件上传实现详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

需要用到的流的相关知识:

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

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

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

pom.xml:

commons-fileuploadcommons-fileupload1.3.1commons-iocommons-io2.4

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

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

文件描述:

请选择文件

文件描述:

请选择文件

请选择文件1:

请选择文件2:

文件上传中,参数要使用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"; }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐