建議使用響應處理程式處理HTTP響應。在本章中,我們將討論如何建立響應處理程式以及如何使用它們來處理響應。
如果使用響應處理程式,則將自動釋放所有HTTP連線。
HttpClient API在org.apache.http.client
包中提供了一個名為ResponseHandler
的介面。為了建立響應處理程式,請實現此介面並覆蓋其handleResponse()
方法。
每個響應都有一個狀態程式碼,如果狀態程式碼在200到300之間,則表示該操作已成功接收,理解和接受。因此,在我們的範例中,使用此類狀態程式碼處理響應的實體。
按照下面給出的步驟使用響應處理程式執行請求。
第1步 - 建立HttpClient物件
HttpClients
類的createDefault()
方法返回類CloseableHttpClient
的物件,該物件是HttpClient
介面的基本實現。使用此方法建立一個HttpClient物件
CloseableHttpClient httpclient = HttpClients.createDefault();
第2步 - 範例化響應處理程式
使用以下程式碼行範例化上面建立的響應處理程式物件 -
ResponseHandler<String> responseHandler = new MyResponseHandler();
第3步 - 建立一個HttpGet物件
HttpGet
類表示HTTP GET請求,該請求使用URI檢索給定伺服器的資訊。
通過範例化HttpGet類並將表示URI作為引數的字串傳遞給其建構函式來建立HttpGet請求。
ResponseHandler<String> responseHandler = new MyResponseHandler();
第4步 - 使用響應處理程式執行Get請求CloseableHttpClient
類有一個execute()
方法的變體,它接受兩個物件ResponseHandler
和HttpUriRequest
引數,並返回一個響應物件。
String httpResponse = httpclient.execute(httpget, responseHandler);
以下範例演示了響應處理程式的用法。
import java.io.IOException;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
class MyResponseHandler implements ResponseHandler<String>{
public String handleResponse(final HttpResponse response) throws IOException{
//Get the status of the response
int status = response.getStatusLine().getStatusCode();
if (status >= 200 && status < 300) {
HttpEntity entity = response.getEntity();
if(entity == null){
return "";
}else{
return EntityUtils.toString(entity);
}
}else{
return ""+status;
}
}
}
public class ResponseHandlerExample {
public static void main(String args[]) throws Exception{
//Create an HttpClient object
CloseableHttpClient httpclient = HttpClients.createDefault();
//instantiate the response handler
ResponseHandler<String> responseHandler = new MyResponseHandler();
//Create an HttpGet object
HttpGet httpget = new HttpGet("http://www.kaops.com/");
//Execute the Get request by passing the response handler object and HttpGet object
String httpresponse = httpclient.execute(httpget, responseHandler);
System.out.println(httpresponse);
}
}
執行上面範例程式碼,得到以下結果:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>考評師 - 一個專注於面試題和知識測評的網站</title>
<meta name="baidu-site-verification" content="SMo5w14fvk" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="考試,面試,面試題,考試題">
<meta name="description" content="考評師網是一個專注於提供知識考評測試和面試題的網站。匯集了各個行業,各種技術,知識等面試題和知識測試。">
<link rel="stylesheet" href="/static/layui/css/layui.css">
<link rel="stylesheet" href="/static/css/global.css">
</head>
<body>
.....