在这个坑里3个多小时啊。这里不得不抱怨下,国内的资料坑爹,全部copy不说,还是错的。
解决办法:
在服务端加入代码:
File file = new File(path); //path为要下载的文件路径
response.setContentLengthLong(file.length()); //对应于long getContentLengthLong()或者 int getContentLength()。
本文共 265 字,大约阅读时间需要 1 分钟。
在这个坑里3个多小时啊。这里不得不抱怨下,国内的资料坑爹,全部copy不说,还是错的。
解决办法:
在服务端加入代码:
File file = new File(path); //path为要下载的文件路径
response.setContentLengthLong(file.length()); //对应于long getContentLengthLong()或者 int getContentLength()。
转载于:https://www.cnblogs.com/xiangxinhouse/p/8647915.html