改进UrlQuery对无参URL增加判断识别(issue#IBRVE4@Gitee)

This commit is contained in:
Looly 2025-03-11 09:26:01 +08:00
parent 161cb6fc19
commit 8fa1481c73
2 changed files with 29 additions and 0 deletions

View File

@ -227,6 +227,9 @@ public class UrlQuery {
if (StrUtil.isBlank(queryStr)) {
return this;
}
} else if (StrUtil.startWith(queryStr, "http://") || StrUtil.startWith(queryStr, "https://")) {
// issue#IBRVE4 用户传入只有URL没有param部分返回空
return this;
}
}

View File

@ -0,0 +1,26 @@
package org.dromara.hutool.core.net;
import org.dromara.hutool.core.net.url.UrlQueryUtil;
import org.dromara.hutool.core.util.CharsetUtil;
import org.junit.jupiter.api.Test;
import java.util.Map;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class IssueIBRVE4Test {
@Test
public void decodeParamMapNoParamTest() {
// 参数值不存在分界标记等号时
// 无参数值时
final Map<String, String> paramMap = UrlQueryUtil.decodeQuery("https://hutool.cn/api.action", CharsetUtil.UTF_8);
assertEquals(0,paramMap.size());
}
@Test
public void decodeParamMapListNoParamTest() {
// 参数值不存在分界标记等号时
// 无参数值时
final Map<String, String> paramMap1 = UrlQueryUtil.decodeQuery("https://hutool.cn/api.action", CharsetUtil.UTF_8);
assertEquals(0,paramMap1.size());
}
}