连接超时并不总是阻止从输入流读取



在我的应用程序中,我打开了UrlConnections,并设置了连接超时。有时,会抛出超时,但输入流仍然是可读的(并且包含数据)

我使用以下代码成功重现了这一点:

    System.setProperty("http.keepAlive", "false");
    long length = 0;
    while (length == 0) {
        HttpURLConnection connection = null;
        try {
            connection = (HttpURLConnection) (new URL("http://www.worldofwargraphs.com").openConnection());
            connection.setConnectTimeout(1); // 1ms
            connection.connect();
        } catch (IOException ex) {
            try {
                byte[] buf = new byte[8196];
                try (InputStream is0 = connection.getInputStream(); InputStream is = new BufferedInputStream(is0, 8196)) {
                    if (is0 != null) {
                        int ret = 0;
                        while ((ret = is.read(buf)) > 0) {
                            length += ret;
                        }
                    }
                }
            } catch (IOException ex2) {
                Logger.getLogger(JavaApplication6.class.getName()).log(Level.SEVERE, null, ex2);
            }
        }
    }
    System.out.println(length);

正如您在这段代码中看到的,我尝试打开一个超时时间很小(1ms)的连接,以确保连接超时。然后我尝试读取输入流

问题是,有时在尝试读取流时,我得到一个java.net.SocketTimeoutException: connect timed out(这是我所期望的),但循环有时会结束,显示读取的字节数 (32912)

谁能解释为什么有时会发生第二种行为?我试图谷歌它,但没有任何发现。

谢谢

您短

得离谱的连接超时已过期,但连接随后完成,因此您可以读取。请注意,设置连接超时不会设置读取超时,因此在数据可用之前,读取会阻止。

编辑:无论如何,您的代码都是错误的。您应该设置一个实际的连接超时,如果得到它,请关闭套接字。在连接异常后继续读取代码没有任何意义。

相关内容

  • 没有找到相关文章

最新更新