0
点赞
收藏
分享

微信扫一扫

微信小程序下载文件时,totalBytesExpectedToWrite为null怎么办?

解决办法:

URL path = new URL(url);
HttpURLConnection connection = (HttpURLConnection) path.openConnection();
// 获取文件总长度
long contentLength = connection.getContentLengthLong(); 
// 设置Content-Length响应头部
response.setHeader("Content-Length", String.valueOf(contentLength)); 
举报

相关推荐

0 条评论