java httpclient 关闭_HttpClient关闭连接

本篇文章帮大家学习HttpClient关闭连接,包含了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步 - 创建一个HttpGetobject

HttpGet类表示HTTP GET请求,该请求使用URI检索给定服务器的信息。通过传递表示URI的字符串来实例化HttpGet类来创建HTTP GET请求。

HttpGet httpGet = new HttpGet("http://www.kaops.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("http://www.kaops.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();

}

}

}

执行上面示例代码,得到以下结果:

考评师 - 一个专注于面试题和知识测评的网站

... ...

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值