📅  最后修改于: 2020-11-18 08:27:28             🧑  作者: Mango
建议使用响应处理程序处理HTTP响应。在本章中,我们将讨论如何创建响应处理程序以及如何使用它们来处理响应。
如果使用响应处理程序,则所有HTTP连接都会自动释放。
HttpClient API在包org.apache.http.client中提供了一个称为ResponseHandler的接口。为了创建响应处理程序,请实现此接口并覆盖其handleResponse()方法。
每个响应都有一个状态码,如果状态码在200到300之间,则表示该操作已成功接收,理解和接受。因此,在我们的示例中,我们将使用此类状态代码处理响应的实体。
请按照下面给出的步骤使用响应处理程序执行请求。
HttpClients类的createDefault()方法返回CloseableHttpClient类的对象,该对象是HttpClient接口的基本实现。使用此方法创建一个HttpClient对象
CloseableHttpClient httpclient = HttpClients.createDefault();
使用以下代码行实例化上面创建的响应处理程序对象-
ResponseHandler responseHandler = new MyResponseHandler();
HttpGet类表示HTTP GET请求,该请求使用URI检索给定服务器的信息。
通过实例化HttpGet类并通过将代表URI的字符串作为参数传递给其构造函数来创建HttpGet请求。
ResponseHandler responseHandler = new MyResponseHandler();
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{
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 responseHandler = new MyResponseHandler();
//Create an HttpGet object
HttpGet httpget = new HttpGet("http://www.tutorialspoint.com/");
//Execute the Get request by passing the response handler object and HttpGet object
String httpresponse = httpclient.execute(httpget, responseHandler);
System.out.println(httpresponse);
}
}
上面的程序生成以下输出-
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .