mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:20:07 +08:00
HttpRequest#get不再尝试File路径
This commit is contained in:
parent
8a88a9daa1
commit
deb2d98a2e
@ -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)
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -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
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user