修复在反代情况下 压缩包获取路径的错误

This commit is contained in:
gaoxiongzaq 2023-04-28 09:46:18 +08:00
parent a59abd179f
commit db3f03bda9

View File

@ -38,13 +38,9 @@ public class DownloadUtils {
public static ReturnResponse<String> downLoad(FileAttribute fileAttribute, String fileName) {
// 忽略ssl证书
String urlStr = null;
String urlStrr = null;
URL urll;
try {
SslUtils.ignoreSsl();
urlStr = fileAttribute.getUrl().replaceAll("\\+", "%20");
urll = new URL(urlStr);
urlStrr = URLDecoder.decode(urll.getPath(), "UTF-8");
} catch (Exception e) {
logger.error("忽略SSL证书异常:", e);
}
@ -58,7 +54,7 @@ public class DownloadUtils {
}
assert urlStr != null;
if (urlStr.contains("?fileKey=")) {
response.setContent(fileDir + urlStrr);
response.setContent(fileDir + fileName);
response.setMsg(fileName);
return response;
}