HttpClient的请求超时和响应超时

HttpClient在Android开发中用于网络请求。CONNECTION_TIMEOUT表示HTTP连接超时,定义了建立连接的时间限制;SO_TIMEOUT是数据读取超时,指连接成功后等待数据的时间。超时设置为0表示永不超时。了解这两个超时参数对于优化网络请求至关重要。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

HttpClient是apache的开源实现,Android SDK中集成了HttpClient,项目开发中目前使用HttpClient来请求网络数据。在开发中碰到下面两个参数。

CONNECTION_TIMEOUT = “http.connection.timeout”

SO_TIMEOUT = “http.socket.timeout”

这两个时间分别叫做请求超时和响应超时,之前对它们的真正含义比较模糊,今天通过文档来了解一下他们的具体含义。

参考文档:http://grepcode.com/file/repo1.maven.org/maven2/org.apache.httpcomponents/httpcore/4.3-beta2/org/apache/http/params/CoreConnectionPNames.java



org.apache.http.params.CoreConnectionPNames.CONNECTION_TIMEOUT

 

Determines the timeout in milliseconds until a connection is established. A timeout value of zero is interpreted as an infinite timeout. 
Please note this parameter can only be applied to connections that are bound to a particular local address. 
This parameter expects a value of type java.lang.Integer.
public static final String CONNECTION_TIMEOUT = “http.connection.timeout”;

 

这个参数表示HTTP连接的超时时间,如果设置为0,则表示永远不会超时。

 

org.apache.http.params.CoreConnectionPNames.SO_TIMEOUT

 

Defines the socket timeout (SO_TIMEOUT) in milliseconds, which is the timeout for waiting for data or, put differently, a maximum period inactivity between two consecutive data packets). A timeout value of zero is interpreted as an infinite timeout. 
This parameter expects a value of type java.lang.Integer.
public static final String SO_TIMEOUT = “http.socket.timeout”;

 

这个参数设定的是HTTP连接成功后,读取数据的超时时间。由于网络数据的读取是阻塞的,如果两个连续的数据包的接收间隔超过指定时长,就会超时。 如果设置为0,则表示永远不会超时。

       欢迎关注我的公众号一起交流学习

     

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值