Apache HttpClient - 关闭连接
如果您手动处理 HTTP 响应而不是使用响应处理程序,则需要自行关闭所有 http 连接。本章介绍如何手动关闭连接。
手动关闭 HTTP 连接时,请按照以下步骤操作:
第 1 步 - 创建 HttpClient 对象
HttpClients类的createDefault ()方法返回CloseableHttpClient类的对象,该类是 HttpClient 接口的基本实现。
使用此方法,创建一个HttpClient对象,如下所示 -
CloseableHttpClient httpClient = HttpClients.createDefault();
第 2 步 - 启动 try-finally 块
启动一个try-finally块,将剩余的代码写入try块中的程序中,并在finally块中关闭CloseableHttpClient对象。
CloseableHttpClient httpClient = HttpClients.createDefault();
try{
//Remaining code . . . . . . . . . . . . . . .
}finally{
httpClient.close();
}
第 3 步 - 创建 HttpGet 对象
HttpGet类表示 HTTP GET 请求,该请求使用 URI 检索给定服务器的信息。
通过传递表示 URI 的字符串来实例化 HttpGet 类,从而创建 HTTP GET 请求。
HttpGet httpGet = new HttpGet("https://www.tutorialspoint.com/");
第 4 步 - 执行 Get 请求
CloseableHttpClient对象的execute ()方法接受HttpUriRequest(接口)对象(即HttpGet、HttpPost、HttpPut、HttpHead 等)并返回响应对象。
使用给定方法执行请求 -
HttpResponse httpResponse = httpclient.execute(httpGet);
第 5 步 - 开始另一个(嵌套的)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();
}
例子
每当您创建/获取请求、响应流等对象时,请在下一行中启动一个 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();
}
}
}
输出
执行上述程序时,会生成以下输出 -
<!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>