欢迎点击「算法与编程之美」↑关注我们!
本文首发于微信公众号:"算法与编程之美",欢迎关注,及时了解更多此系列文章。
问题描述
我们在做项目的时候很多时候会涉及到操作文件的步骤,今天我们就来讲讲如何实现Springboot文件上传与下载。
解决方案
话不多说,我们直接上代码。
首先是添加依赖:
``` <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.1</version> </dependency> ``` |
---|
在application.properties文件里添加如下内容:
``` spring.servlet.multipart.file-size-threshold=0B #文件大小阈值,当大于这个阈值时将写入到磁盘,否则在内存中。默认值为0 spring.servlet.multipart.max-request-size=100MB #设置上传文件总大小为100MB spring.servlet.multipart.max-file-size=100MB ``` |
---|
然后是文件上传的代码:
### 下面是文件上传Controller的代码 @Controller @RequestMapping("/") public class FileController { // 定义文件存放的父文件夹路径 private static String parentPath = "D:"+File.separator+"fileUpload"; @RequestMapping("/upload") public String upload(){ return "upload"; } @RequestMapping(value = "/upload",method = RequestMethod.POST) @ResponseBody public String upload(@RequestParam("file") MultipartFile file){ // 判断上传文件是否为空,若为空则返回错误信息 if(file.isEmpty()){ return "上传失败"; }else{ // 获取文件原名 String originalFilename = file.getOriginalFilename(); System.out.println(originalFilename); // 获取源文件前缀 String fileNamePrefix = originalFilename.substring(0,originalFilename.lastIndexOf(".")); //获取源文件后缀 String fileNameSuffix = originalFilename.substring(originalFilename.lastIndexOf(".")); // 将源文件前缀之后加上时间戳避免重名 String newFileNamePrefix = fileNamePrefix+new Date().getTime(); // 得到上传后新文件的文件名 String newFileName = newFileNamePrefix+fileNameSuffix; // 创建一个新的File对象用于存放上传的文件 File fileNew = new File(parentPath+File.separator+newFileName); try { file.transferTo(fileNew); } catch (IOException e) { e.printStackTrace(); } } return "上传成功"; } } ``` ###以及文件上传的html代码 ```html <!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <title>单文件上传</title> </head> <body> <form method="post" action="/upload" enctype="multipart/form-data"> <input type="file" name="file"> <input type="submit" value="提交"> </form> </body> </html> ``` |
---|
最后是文件下载的代码:
###如下是文件下载的Controller代码 当然filename在实际的使用中不会被写死,但是在这里演示就直接写死吧 ```java @RequestMapping(value = "/download",method = RequestMethod.GET) public void download(HttpServletResponse response){ // 通过response输出流将文件传递到浏览器 // 1、获取文件路径 String fileName = "文件"; //2.构建一个文件通过Paths工具类获取一个Path对象 Path path = Paths.get(parentPath,fileName); //判断文件是否存在 if (Files.exists(path)){ //存在则下载 //通过response设定他的响应类型 //4.获取文件的后缀名 String fileSuffix = fileName.substring(fileName.lastIndexOf(".")+1); // 5.设置contentType ,只有指定contentType才能下载 response.setContentType("application/"+fileSuffix); // 6.添加http头信息 // 因为fileName的编码格式是UTF-8 但是http头信息只识别 ISO8859-1 的编码格式 // 因此要对fileName重新编码 try { response.addHeader("Content-Disposition","attachment;filename="+new String(fileName.getBytes("UTF-8"),"ISO8859-1")); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } // 7.使用 Path 和response输出流将文件输出到浏览器 try { Files.copy(path,response.getOutputStream()); } catch (IOException e) { e.printStackTrace(); } } } ``` |
---|
我们的目的就达成啦!
结语
具体代码的意思到在代码中给了注解的哦,希望能够帮助到你们哦。
更多精彩文章:
where2go 团队
微信号:算法与编程之美
温馨提示:点击页面右下角“写留言”发表评论,期待您的参与!期待您的转发!