Spring MVC的文件下载实例详解
程序员文章站
2023-11-25 08:56:16
spring mvc的文件下载实例详解
读取文件
要下载文件,首先是将文件内容读取进来,使用字节数组存储起来,这里使用spring里面的工具类实现
impor...
spring mvc的文件下载实例详解
读取文件
要下载文件,首先是将文件内容读取进来,使用字节数组存储起来,这里使用spring里面的工具类实现
import org.springframework.util.filecopyutils; public byte[] downloadfile(string filename) { byte[] res = new byte[0]; try { file file = new file(backup_file_path, filename); if (file.exists() && !file.isdirectory()) { res = filecopyutils.copytobytearray(file); } } catch (ioexception e) { logger.error(e.getmessage()); } return res; }
这个数组就是文件的内容,后面将输出到响应,供浏览器下载
下载文件的响应
下载文件的响应头和一般的响应头是有所区别的,而这里面还要根据用户浏览器的不同区别对待
我把生成响应的代码封装成了一个方法,这样所有下载响应都可以调用这个方法了,避免重复代码到处写
protected responseentity<byte[]> downloadresponse(byte[] body, string filename) { httpservletrequest request = ((servletrequestattributes) requestcontextholder .getrequestattributes()).getrequest(); string header = request.getheader("user-agent").touppercase(); httpstatus status = httpstatus.created; try { if (header.contains("msie") || header.contains("trident") || header.contains("edge")) { filename = urlencoder.encode(filename, "utf-8"); filename = filename.replace("+", "%20"); // ie下载文件名空格变+号问题 status = httpstatus.ok; } else { filename = new string(filename.getbytes("utf-8"), "iso8859-1"); } } catch (unsupportedencodingexception e) {} httpheaders headers = new httpheaders(); headers.setcontenttype(mediatype.application_octet_stream); headers.setcontentdispositionformdata("attachment", filename); headers.setcontentlength(body.length); return new responseentity<byte[]>(body, headers, status); }
这里需要注意,一般来说下载文件是使用201状态码的,但是ie浏览器不支持,还得我花了很大力气才找出来是那个问题
其中对文件名的处理是为了防止中文以及空格导致文件名乱码
控制器方法
在控制器的那里需要对返回值进行处理
@requestmapping(value = "/download-backup", method = requestmethod.get) @responsebody public responseentity<byte[]> downloadbackupfile(@requestparam string filename) { byte[] body = backupservice.downloadfile(filename); return downloadresponse(body, filename); }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
上一篇: 谛听科技面向全国寻找技术精英,用2亿数字黄金广纳人才!
下一篇: 用flash简单绘制一个漂亮的桃心
推荐阅读
-
Spring Boot 定制与优化内置的Tomcat容器实例详解
-
spring boot 自动更新静态文件和后台代码的实例
-
对Python多线程读写文件加锁的实例详解
-
SpringMVC和Spring的配置文件扫描包详解
-
Spring boot + LayIM + t-io 实现文件上传、 监听用户状态的实例代码
-
spring mvc 组合mybatis框架实例详解
-
Spring MVC+FastJson+Swagger集成的完整实例教程
-
Spring MVC+FastJson+hibernate-validator整合的完整实例教程
-
Spring Cloud 覆写远端的配置属性实例详解
-
Linux chmod命令详解和使用实例(改变文件或目录的访问权限)