47

I wrote some simple code in Java, the method should connect to the website and return the BufferedReader.

private BufferedReader getConnection(String url_a) {
        URL url;
        try {
            System.out.println("getting connection");
            url = new URL(url_a);
            HttpURLConnection urlConnection = (HttpURLConnection) 
                     url.openConnection();
            urlConnection.addRequestProperty("User-Agent",
                    "Mozilla/5.0 (X11; U; Linux i586; en-US; rv:1.7.3) Gecko/20040924"
                     + "Epiphany/1.4.4 (Ubuntu)");
            inStream = new InputStreamReader(urlConnection.getInputStream());
            return new BufferedReader(inStream);
        } catch (Exception ex) {
            Logger.getLogger(Reader.class.getName()).log(Level.SEVERE, null, ex);
        }
        return null;

}

When I use it on my PC, it works fine but when I put .jar file on the server I get this error:

java.net.SocketException: Unexpected end of file from server
at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:718)
at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:579)
at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:715)
at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:579)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1322)
at dataconverter.Reader.getConnection(Reader.java.260)

Problem is quite strange because the exception isn't thrown each time, sometimes everything is OK and program works fine.

Has anybody got any ideas?

4

8 回答 8

75

“文件意外结束”意味着远程服务器接受并关闭了连接而没有发送响应。远程系统可能太忙而无法处理请求,或者存在随机断开连接的网络错误。

服务器中也可能存在错误:请求中的某些内容导致内部错误,并且服务器只是关闭连接而不是像应有的那样发送 HTTP 错误响应。一些人认为这是由于请求中缺少标头或无效标头值引起的。

有了可用的信息,就不可能说出出了什么问题。如果您有权访问相关服务器,则可以使用数据包嗅探工具来查找发送和接收的确切内容,并查看服务器进程的日志以查看是否有任何错误消息。

于 2013-11-06T22:58:36.273 回答
59

概括

当您期待响应时会遇到此异常,但套接字已突然关闭。

详细说明

在这里HTTPClient找到的 Java在非常特殊的情况下会抛出一条带有消息“来自服务器的文件意外结束”的消息。SocketException

发出请求后,HTTPClient获取InputStream与请求关联的套接字。然后它反复轮询,InputStream直到它:

  1. 查找字符串“HTTP/1”。
  2. InputStream在读取 8 个字符之前到达末尾
  3. 查找“HTTP/1”以外的字符串。

在数字 2 的情况下,如果以下任何一项为真,HTTPClient则会抛出此错误:SocketException

  • HTTP方法是CONNECT
  • HTTP方法是POST并且客户端设置为流模式

为什么会发生这种情况

这表明 TCP 套接字在服务器能够发送响应之前已关闭。这可能由于多种原因而发生,但一些可能性是:

  • 网络连接丢失
  • 服务器决定关闭连接
  • 客户端和服务器(nginx、路由器等)之间的某些东西终止了请求

注意:当 Nginx 重新加载其配置时,它会强制关闭任何正在进行的 HTTP Keep-Alive 连接(甚至是 POST),从而导致这个确切的错误。

于 2017-02-17T23:50:23.363 回答
5

当我未设置身份验证标头或设置错误的凭据时,我确实收到此错误。

于 2017-01-31T19:34:37.980 回答
1

我建议使用钢丝鲨来追踪数据包。如果您使用的是 Ubuntu,请使用 sudo-apt get wireshark。正如 Joni 所说,找出问题所在的唯一方法是跟踪 GET 请求及其相关响应。

http://www.wireshark.org/download.html

于 2013-11-06T23:30:00.693 回答
1

就我而言,只需将代理传递给连接即可解决。感谢@Andreas Panagiotidis

Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("<YOUR.HOST>", 80)));
HttpsURLConnection con = (HttpsURLConnection) url.openConnection(proxy);
于 2018-10-10T14:13:56.957 回答
0

在我的情况下 url 包含错误的字符,如空格。总体记录您的网址,在某些情况下使用浏览器。

于 2020-05-02T13:56:41.173 回答
0

您设置的标题很可能不正确或不可接受。

例子:

connnection.setRequestProperty("content-type", "application/json");
于 2019-07-20T22:46:38.767 回答
-2

我也遇到了这个例外。我的错误代码如下

        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
    connection.setRequestMethod(requestMethod);
        connection.setRequestProperty("Content-type", "JSON");

我发现“Content-type”不应​​该是“JSON”,错了!我通过将此行更新到下面解决了这个异常

        connection.setRequestProperty("Content-type", "application/json");

你可以检查你的“内容类型”

于 2017-08-11T06:52:47.280 回答