add method

This commit is contained in:
Looly 2020-05-05 13:14:42 +08:00
parent 2ad893ebbc
commit c00ab6e126
3 changed files with 2 additions and 2 deletions

View File

@ -15,6 +15,7 @@
* 【bloomFilter】 避免布隆过滤器数字溢出pr#119@Gitee
* 【core 】 增加IoUtil.writeObjissue#I1FZIE
* 【core 】 增加FastStringWriter
* 【core 】 增加NumberUtil.ceilDiv方法pr#858@Github
### Bug修复
* 【core 】 修复URLBuilder中请求参数有`&`导致的问题issue#850@Github

View File

@ -20,7 +20,6 @@ import com.github.promeg.pinyinhelper.Pinyin;
* <version>2.0.3.RELEASE</version>
* </dependency>
* </pre>
* </p>
*
* @author looly
*/

View File

@ -19,7 +19,7 @@ import java.util.Map;
public class HttpUtilTest {
@Test
// @Ignore
@Ignore
public void postTest() {
String result = HttpUtil.createPost("api.uhaozu.com/goods/description/1120448506").charset(CharsetUtil.UTF_8).execute().body();
Console.log(result);