wlfcolin / file-downloader

FileDownloader, powerful http/https file download tool on Android
Apache License 2.0
384 stars 152 forks source link

从七牛云存储下载回资源的文件名总会带引号 #27

Open cshlxm opened 7 years ago

cshlxm commented 7 years ago

使用该库从七牛云存储上下载资源的话,文件名无法正常保存,总会保存成: "filename.sub" (包含了两边的引号),下载中的临时文件就是; "finame.sub".temp 测试地址:http://od6crdcrj.bkt.clouddn.com/VR%E7%94%B5%E5%BD%B1.jpg

cshlxm commented 7 years ago

搞定了 HttpConnectionHelper.java 里 getFileNameFromPhpServerResponseHeader 里 String fileName = contentDisposition.substring(start + 2, contentDisposition.length()-1); 但是遇见了新的问题,文件链接里如果是中文文件名在部分手机上存储时会变乱码,还在努力解决中