java 自定义http头_HttpClient自定义HTTP头
HTTP消息可以包含許多描述消息屬性的標頭,例如內容長度,內容類型,授權等。 HttpClient提供了檢索,添加,刪除和枚舉標頭的方法。 在下面的教程中,我們將演示如何將自定義HTTP頭添加到HttpClient和Http請求方法。
Maven依賴關系
我們使用maven來管理依賴關系,并使用Apache HttpClient 4.5版本。 將以下依賴項添加到您的項目中。
pom.xml 文件的內容如下 -
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
com.yiibai.httpclient.httmethods
http-get
1.0.0-SNAPSHOT
https://memorynotfound.com
httpclient - ${project.artifactId}
org.apache.httpcomponents
httpclient
4.5.2
maven-compiler-plugin
3.5.1
1.8
1.8
自定義HTTP頭示例
HttpClient允許我們添加,編輯,刪除或枚舉http頭。 首先來看看在HttpClient上設置默認標頭。 接下來,我們在消息上添加自定義HTTP請求標頭。
文件:HttpClientRedirectHandlingExample.java -
package com.yiibai.httpdemo;
import org.apache.http.Header;
import org.apache.http.HttpEntity;
import org.apache.http.HttpHeaders;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.methods.HttpUriRequest;
import org.apache.http.client.methods.RequestBuilder;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.message.BasicHeader;
import org.apache.http.util.EntityUtils;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
/**
* This example demonstrates how to use custom http headers.
*/
public class HttpClientCustomHeadersExample {
public static void main(String... args) throws IOException {
// create custom http headers for httpclient
List defaultHeaders = Arrays.asList(
new BasicHeader("X-Default-Header", "default header httpclient"));
// setting custom http headers on the httpclient
CloseableHttpClient httpclient = HttpClients
.custom()
.setDefaultHeaders(defaultHeaders)
.build();
try {
// setting custom http headers on the http request
HttpUriRequest request = RequestBuilder.get()
.setUri("http://httpbin.org/headers")
.setHeader(HttpHeaders.CONTENT_TYPE, "application/json")
.setHeader(HttpHeaders.FROM, "https://memorynotfound.com")
.setHeader("X-Custom-Header", "custom header http request")
.build();
System.out.println("Executing request " + request.getRequestLine());
// Create a custom response handler
ResponseHandler responseHandler = response -> {
int status = response.getStatusLine().getStatusCode();
if (status >= 200 && status < 300) {
HttpEntity entity = response.getEntity();
return entity != null ? EntityUtils.toString(entity) : null;
} else {
throw new ClientProtocolException("Unexpected response status: " + status);
}
};
String responseBody = httpclient.execute(request, responseHandler);
System.out.println("----------------------------------------");
System.out.println(responseBody);
} finally {
httpclient.close();
}
}
}
執行上面示例代碼,得到以下結果 -
Executing request GET http://httpbin.org/headers HTTP/1.1
----------------------------------------
{
"headers": {
"Accept-Encoding": "gzip,deflate",
"Connection": "close",
"Content-Type": "application/json",
"From": "https://memorynotfound.com",
"Host": "httpbin.org",
"User-Agent": "Apache-HttpClient/4.5.5 (Java/1.8.0_65)",
"X-Custom-Header": "custom header http request",
"X-Default-Header": "default header httpclient"
}
}
¥ 我要打賞
糾錯/補充
收藏
加QQ群啦,易百教程官方技術學習群
注意:建議每個人選自己的技術方向加群,同一個QQ最多限加 3 個群。
總結
以上是生活随笔為你收集整理的java 自定义http头_HttpClient自定义HTTP头的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java guice_java – Gu
- 下一篇: java实训手册_java实训项目用户手