“ java.io.IOException:连接超时” VS java 11 HTTP Client上的HttpTimeoutException

问题描述

我正在使用Java 11 http-client(java.net.http)。

send()方法声明以下异常:

@throws IOException
@throws InterruptedException
@throws IllegalArgumentException
@throws SecurityException

我有兴趣捕获由超时引起的异常。 我认为最好的方法是赶上 HttpTimeoutException(扩展IOException

但是,有时我会看到发生超时时抛出的异常是:

java.io.IOException: Connection timed out

现在我想知道:

  1. 为什么会引发更一般的异常?
  2. 如何编写捕获以确保捕获到所有可能的超时相关异常?

解决方法

@Override
public <T> HttpResponse<T>
send(HttpRequest req,BodyHandler<T> responseHandler)
    throws IOException,InterruptedException
{
    CompletableFuture<HttpResponse<T>> cf = null;
    try {
        cf = sendAsync(req,responseHandler,null,null);
        return cf.get();
    } catch (InterruptedException ie) {
        if (cf != null )
            cf.cancel(true);
        throw ie;
    } catch (ExecutionException e) {
        final Throwable throwable = e.getCause();
        final String msg = throwable.getMessage();

        if (throwable instanceof IllegalArgumentException) {
            throw new IllegalArgumentException(msg,throwable);
        } else if (throwable instanceof SecurityException) {
            throw new SecurityException(msg,throwable);
        } else if (throwable instanceof HttpConnectTimeoutException) {
            HttpConnectTimeoutException hcte = new HttpConnectTimeoutException(msg);
            hcte.initCause(throwable);
            throw hcte;
        } else if (throwable instanceof HttpTimeoutException) {
            throw new HttpTimeoutException(msg);
        } else if (throwable instanceof ConnectException) {
            ConnectException ce = new ConnectException(msg);
            ce.initCause(throwable);
            throw ce;
        } else if (throwable instanceof SSLHandshakeException) {
            // special case for SSLHandshakeException
            SSLHandshakeException he = new SSLHandshakeException(msg);
            he.initCause(throwable);
            throw he;
        } else if (throwable instanceof SSLException) {
            // any other SSLException is wrapped in a plain
            // SSLException
            throw new SSLException(msg,throwable);
        } else if (throwable instanceof IOException) {
            throw new IOException(msg,throwable);
        } else {
            throw new IOException(msg,throwable);
        }
    }
}

请参见下面的方法,该方法是HttpClientImpl.java的内部方法。 处理所有要管理的异常,因此可以实现代码。

如果您处理HttpConnectTimeoutException,IOException,HttpTimeoutException,那么您会被覆盖。

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...