android中如何获取超时时长的异常
2个回答
展开全部
android获取超时时长的异常方式如下:设置超时机制
client.getParams().setIntParameter(
HttpConnectionParams.SO_TIMEOUT, TIME_OUT_DELAY); // 超时设置
client.getParams().setIntParameter(
HttpConnectionParams.CONNECTION_TIMEOUT, TIME_OUT_DELAY);// 连接超时
这里设置了两种超时,第一种是请求超时,第二种时连接超时。
当向服务器发出请求后,请求和服务器建立socket连接,但是很长时间内都没有建立socket连接,这就时第一种请求超时,这种情况主要发生在请求了
一个不存在的服务器。超时之后,会抛出InterruptedIOException异常。
Timeout for blocking operations. The argument value is specified in
milliseconds. An InterruptedIOException is thrown if this timeout
expires.
client.getParams().setIntParameter(
HttpConnectionParams.SO_TIMEOUT, TIME_OUT_DELAY); // 超时设置
client.getParams().setIntParameter(
HttpConnectionParams.CONNECTION_TIMEOUT, TIME_OUT_DELAY);// 连接超时
这里设置了两种超时,第一种是请求超时,第二种时连接超时。
当向服务器发出请求后,请求和服务器建立socket连接,但是很长时间内都没有建立socket连接,这就时第一种请求超时,这种情况主要发生在请求了
一个不存在的服务器。超时之后,会抛出InterruptedIOException异常。
Timeout for blocking operations. The argument value is specified in
milliseconds. An InterruptedIOException is thrown if this timeout
expires.
推荐于2016-04-03 · 知道合伙人软件行家
关注
展开全部
以下是几个常用的异常提示处理
public String ExceptionCode(Exception e) {
if (e instanceof HttpException) {
return 网络异常;
} else if (e instanceof SocketTimeoutException) {
return 响应超时;
} else if (e instanceof ConnectTimeoutException) {
return 请求超时;
} else if (e instanceof UnknownHostException) {
return 无法连接服务器;
} else if (e instanceof IOException) {
return 网络异常
}
... ...
public String ExceptionCode(Exception e) {
if (e instanceof HttpException) {
return 网络异常;
} else if (e instanceof SocketTimeoutException) {
return 响应超时;
} else if (e instanceof ConnectTimeoutException) {
return 请求超时;
} else if (e instanceof UnknownHostException) {
return 无法连接服务器;
} else if (e instanceof IOException) {
return 网络异常
}
... ...
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |