Apache Httpclient 简明教程

Apache HttpClient - Closing Connection

如果你手动处理 HTTP 响应而不是使用响应处理程序,你需要自己关闭所有 http 连接。本章解释了如何手动关闭连接。

手动关闭 HTTP 连接时遵循以下步骤 −

Step 1 - Create an HttpClient object

HttpClients 类的 createDefault() 方法返回类 CloseableHttpClient 的一个对象,它是 HttpClient 接口的基本实现。

使用此方法,创建一个 HttpClient 对象,如下所示 −

CloseableHttpClient httpClient = HttpClients.createDefault();

Step 2 - Start a try-finally block

启动一个 try-finally 块,在 try 块中编写程序中的其余代码,并在 finally 块中关闭 CloseableHttpClient 对象。

CloseableHttpClient httpClient = HttpClients.createDefault();
try{
   //Remaining code . . . . . . . . . . . . . . .
}finally{
   httpClient.close();
}

Step 3 - Create a HttpGetobject

HttpGet 类表示使用 URI 检索给定服务器信息的 HTTP GET 请求。

通过实例化 HttpGet 类来创建 HTTP GET 请求,并传入一个表示 URI 的字符串。

HttpGet httpGet = new HttpGet("https://www.tutorialspoint.com/");

Step 4 - Execute the Get request

CloseableHttpClient 对象的 execute() 方法接受一个 HttpUriRequest (接口)对象(即 HttpGet、HttpPost、HttpPut、HttpHead 等),并返回一个响应对象。

使用给定方法执行请求 −

HttpResponse httpResponse = httpclient.execute(httpGet);

Step 5 - Start another (nested) try-finally

启动另一个 try-finally 块(嵌套在前一个 try-finally 中),在此 try 块中编写程序中的其余代码,并在 finally 块中关闭 HttpResponse 对象。

CloseableHttpClient httpclient = HttpClients.createDefault();
try{
   . . . . . . .
   . . . . . . .
   CloseableHttpResponse httpresponse = httpclient.execute(httpget);
   try{
      . . . . . . .
      . . . . . . .
   }finally{
      httpresponse.close();
   }
}finally{
   httpclient.close();
}

Example

每当你创建/获取对象(如请求、响应流等)时,就在下一行中启动一个 try finally 块,在 try 中编写剩余代码,并在 finally 块中关闭相应对象,如下一个程序中所示 −

import java.util.Scanner;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;

public class CloseConnectionExample {

   public static void main(String args[])throws Exception{

      //Create an HttpClient object
      CloseableHttpClient httpclient = HttpClients.createDefault();

      try{
         //Create an HttpGet object
         HttpGet httpget = new HttpGet("https://www.tutorialspoint.com/");

         //Execute the Get request
         CloseableHttpResponse httpresponse = httpclient.execute(httpget);

         try{
            Scanner sc = new Scanner(httpresponse.getEntity().getContent());
            while(sc.hasNext()) {
               System.out.println(sc.nextLine());
            }
         }finally{
            httpresponse.close();
         }
      }finally{
         httpclient.close();
      }
   }
}

Output

在执行上述程序时,生成以下输出 −

<!DOCTYPE html>
<!--[if IE 8]><html class = "ie ie8"> <![endif]-->
<!--[if IE 9]><html class = "ie ie9"> <![endif]-->
<!--[if gt IE 9]><!-->
<html lang = "en-US"> <!--<![endif]-->
<head>
<!-- Basic -->
<meta charset = "utf-8">
<meta http-equiv = "X-UA-Compatible" content = "IE = edge">
<meta name = "viewport" content = "width = device-width,initial-scale = 1.0,userscalable = yes">
<link href = "https://cdn.muicss.com/mui-0.9.39/extra/mui-rem.min.css"
rel = "stylesheet" type = "text/css" />
<link rel = "stylesheet" href = "/questions/css/home.css?v = 3" />
<script src = "/questions/js/jquery.min.js"></script>
<script src = "/questions/js/fontawesome.js"></script>
<script src = "https://cdn.muicss.com/mui-0.9.39/js/mui.min.js"></script>
</head>
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-232293-17');
</script>
</body>
</html>