HttpRequest#get不再尝试File路径

This commit is contained in:
Looly 2024-05-10 17:27:19 +08:00
parent 8a88a9daa1
commit deb2d98a2e
3 changed files with 18 additions and 1 deletions

View File

@ -18,6 +18,7 @@
* 【poi 】 增加ExcelWriter.addIgnoredErrors支持忽略警告小标
* 【core 】 PropertyComparator增加compareSelf构造重载issue#3569@Github
* 【db 】 增加OceanBase的driver推断pr#1217@Gitee
* 【http 】 HttpRequest#get不再尝试File路径issue#I9O6DA@Gitee
### 🐞Bug修复
* 【http 】 修复HttpUtil.urlWithFormUrlEncoded方法重复编码问题issue#3536@Github

View File

@ -135,7 +135,7 @@ public final class UrlBuilder implements Builder<String> {
*/
public static UrlBuilder of(String url, Charset charset) {
Assert.notBlank(url, "Url must be not blank!");
return of(URLUtil.url(StrUtil.trim(url)), charset);
return of(URLUtil.urlForNet(StrUtil.trim(url)), charset);
}
/**

View File

@ -164,6 +164,22 @@ public class URLUtil extends URLEncodeUtil {
}
}
/**
* 根据提供的路径创建一个URL对象如果给定路径非网络协议路径直接抛出异常
*
* @param path 表示URL路径的字符串
* @return 返回一个新创建的URL对象
* @throws UtilException 如果给定的路径不能构造一个有效的URL则抛出UtilException
* @since 5.8.28
*/
public static URL urlForNet(String path) throws UtilException{
try {
return new URL(path);
} catch (MalformedURLException e) {
throw new UtilException(e);
}
}
/**
* 获取string协议的URL类似于string:///xxxxx
*