This commit is contained in:
Looly 2023-05-16 17:12:44 +08:00
parent e4b7a700c1
commit e2e1e1d8b1
2 changed files with 42 additions and 0 deletions

View File

@ -23,6 +23,14 @@ import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* URL中查询字符串部分的封装工具类似于
* <pre>
* key1=v1&amp;key2=&amp;key3=v3
* </pre>
*
* @author looly
*/
public class UrlQueryUtil {
/**
* 将Map形式的Form表单数据转换为Url参数形式会自动url编码键和值

View File

@ -0,0 +1,34 @@
/*
* Copyright (c) 2023 looly(loolly@aliyun.com)
* Hutool is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package org.dromara.hutool.core.net.url;
import org.dromara.hutool.core.text.StrUtil;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class IssueI73J6XTest {
@Test
void decodeQueryTest() {
final UrlBuilder builder = UrlBuilder.of("/v1/log/query");
final UrlQuery query = builder.getQuery();
Assertions.assertEquals(StrUtil.EMPTY, query.toString());
}
@Test
void decodeQueryTest2() {
final UrlBuilder builder = UrlBuilder.of("/v1/log/query?");
final UrlQuery query = builder.getQuery();
Assertions.assertEquals(StrUtil.EMPTY, query.toString());
}
}