httpClient发送get请求获取请求头
时间: 2024-01-30 08:04:09 浏览: 71
可以通过以下代码使用httpClient发送GET请求并获取响应头:
```java
import java.io.IOException;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.util.EntityUtils;
import org.apache.http.Header;
public class HttpClientGetExample {
public static void main(String[] args) throws IOException {
String url = "http://example.com";
CloseableHttpClient client = HttpClientBuilder.create().build();
HttpGet request = new HttpGet(url);
// 发送GET请求
CloseableHttpResponse response = client.execute(request);
// 获取响应头
Header[] headers = response.getAllHeaders();
for (Header header : headers) {
System.out.println(header.getName() + " : " + header.getValue());
}
// 获取响应体
String responseBody = EntityUtils.toString(response.getEntity());
System.out.println(responseBody);
client.close();
}
}
```
在上面的代码中,我们使用 HttpClientBuilder.create().build() 创建一个 CloseableHttpClient 对象,并使用 HttpGet 请求方法发送 GET 请求。然后我们可以使用 response.getAllHeaders() 获取所有的响应头,并遍历打印出来。最后使用 EntityUtils.toString(response.getEntity()) 获取响应体。
阅读全文