hutool发送http请求
时间: 2023-09-01 12:06:41 浏览: 171
hutool-http-4.4.2.jar
Hutool是一个Java工具库,可以使用它来发送HTTP请求。其中,Hutool的HttpUtil类提供了发送HTTP请求的方法。
以下是使用Hutool发送HTTP请求的示例代码:
```java
import cn.hutool.http.HttpUtil;
public class HttpTest {
public static void main(String[] args) {
// 发送 GET 请求
String result = HttpUtil.get("https://www.baidu.com");
System.out.println(result);
// 发送 POST 请求
String postData = "name=John&age=20";
result = HttpUtil.post("https://example.com/api", postData);
System.out.println(result);
}
}
```
在上面的示例代码中,我们分别使用HttpUtil的get和post方法发送了GET和POST请求,并输出了响应结果。需要注意的是,发送POST请求时,需要将请求参数放在postData字符串中。
阅读全文