hutool get请求
时间: 2023-10-04 22:04:36 浏览: 151
使用Hutool进行GET请求可以使用HttpUtil类中的get方法,示例代码如下:
```java
// 发送 GET 请求,获取响应结果
String result = HttpUtil.get("http://www.example.com");
System.out.println(result);
```
如果需要传递参数,则可以将参数拼接在URL后面,也可以使用Map或者对象作为参数传递,示例代码如下:
```java
// 拼接参数到URL后面
String url = "http://www.example.com?key1=value1&key2=value2";
String result = HttpUtil.get(url);
System.out.println(result);
// 使用Map作为参数传递
Map<String, Object> paramMap = new HashMap<>();
paramMap.put("key1", "value1");
paramMap.put("key2", "value2");
String result = HttpUtil.get("http://www.example.com", paramMap);
System.out.println(result);
// 使用对象作为参数传递
public class RequestParams {
private String key1;
private String key2;
// 省略 getter 和 setter 方法
}
RequestParams params = new RequestParams();
params.setKey1("value1");
params.setKey2("value2");
String result = HttpUtil.get("http://www.example.com", params);
System.out.println(result);
```
需要注意的是,在使用Hutool进行HTTP请求时,需要在项目中引入Hutool的相关依赖库。
阅读全文