HttpClient 终止请求

如何终止HttpClient请求

您可以使用 abort() 方法中止当前的 HTTP 请求,即,在调用此方法后,对特定请求的执行将被中止。

如果在一次执行后调用此方法,则该执行的响应不会受到影响,后续执行将被中止。

终止HttpClient请求的例子

您观察以下示例,我们已经创建了一个 HttpGet 请求,使用getMethod()打印了使用的请求格式。

然后,我们使用相同的请求进行了另一次执行。再次使用第一次执行打印状态行。最后,打印第二次执行的状态行。

如上所述,第一次执行(在 abort 方法之前执行)的响应被打印(包括在 abort 方法之后写入的第二个状态行),并且在 abort 方法之后当前请求的所有后续执行都失败了例外。

package com.yiidian;

import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;

public class HttpGetExample {
   public static void main(String args[]) throws Exception{
   
      //Creating an HttpClient object
      CloseableHttpClient httpclient = HttpClients.createDefault();

      //Creating an HttpGet object
      HttpGet httpget = new HttpGet("http://www.yiidian.com/");

      //Printing the method used
      System.out.println(httpget.getMethod());
 
      //Executing the Get request
      HttpResponse httpresponse = httpclient.execute(httpget);

      //Printing the status line
      System.out.println(httpresponse.getStatusLine());

      httpget.abort();
      System.out.println(httpresponse.getEntity().getContentLength());
 
      //Executing the Get request
      HttpResponse httpresponse2 = httpclient.execute(httpget);
      System.out.println(httpresponse2.getStatusLine());
   }
}

输出结果为:

热门文章

优秀文章