!19 兼容本地绝对路径文件获取(win、linux)

Merge pull request !19 from zhangxiaoxiao/master
pull/19/MERGE
陈精华 2020-12-10 14:11:06 +08:00 committed by Gitee
commit cb21952155
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public class DownloadUtils {
}
try {
URL url = new URL(urlStr);
if (url.getProtocol() != null && url.getProtocol().toLowerCase().startsWith("http")) {
if (url.getProtocol() != null && (url.getProtocol().toLowerCase().startsWith("file")||url.getProtocol().toLowerCase().startsWith("http"))) {
byte[] bytes = getBytesFromUrl(urlStr);
OutputStream os = new FileOutputStream(new File(realPath));
saveBytesToOutStream(bytes, os);