From a4d4fc31735529164fabc3acd768d8e5ccb2dc07 Mon Sep 17 00:00:00 2001 From: feilong Date: Wed, 26 Jun 2019 13:42:23 +0800 Subject: [PATCH] :memo: update javadoc --- .../HttpClientUtilUriSpaceTest.java | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 feilong-net-httpclient4/src/test/java/com/feilong/net/httpclient4/HttpClientUtilUriSpaceTest.java diff --git a/feilong-net-httpclient4/src/test/java/com/feilong/net/httpclient4/HttpClientUtilUriSpaceTest.java b/feilong-net-httpclient4/src/test/java/com/feilong/net/httpclient4/HttpClientUtilUriSpaceTest.java new file mode 100644 index 0000000..61547de --- /dev/null +++ b/feilong-net-httpclient4/src/test/java/com/feilong/net/httpclient4/HttpClientUtilUriSpaceTest.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2008 feilong + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.feilong.net.httpclient4; + +import org.junit.Test; + +public class HttpClientUtilUriSpaceTest{ + + @Test + public void test(){ + String uri = "https://www.baidu.com/item/BA8 900"; + HttpClientUtil.get(uri); + } +}