android中如何获取超时时长的异常
发布网友
发布时间:2022-04-25 06:16
我来回答
共2个回答
热心网友
时间:2023-11-02 09:38
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.
热心网友
时间:2023-11-02 09:38
以下是几个常用的异常提示处理
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 网络异常
}
... ...