java.io.IOException: unexpected end of stream on Connection in android

我与影子孤独终老i 提交于 2020-01-09 03:39:04

问题


I have web service URL, it working fine. It gives the JSON data. When I use HttpURLConnection, InputStream, I am getting an error. like

java.io.IOException: unexpected end of stream on Connection{comenius-api.sabacloud.com:443, proxy=DIRECT hostAddress=12.130.57.1 cipherSuite=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 protocol=http/1.1} (recycle count=0)

 try{
        URL url = new URL("https://comenius-api.sabacloud.com/v1/people/username="+username+":(internalWorkHistory)?type=internal&SabaCertificate="+ certificate);

        HttpURLConnection con = (HttpURLConnection)url.openConnection();
        InputStream ist = con.getInputStream();
        BufferedReader reader = new BufferedReader(new InputStreamReader(ist));

        while((singleLine = reader.readLine())!= null){
            data = data + singleLine;
            Log.e("Response", data);
        }

    }catch(Exception e)
    {
        e.printStackTrace();
    }

how to fix this?


回答1:


I had the same problem using OKHttp3. The problem was that I didn't close the connection for each request and for the client the same connection was available and for the server not, for this reason the server returns a error.

The solution is indicating to each request to close the connection when it is finished. You have to add a flag in the header to indicate this. In OKHttp3 is like this:

Request request = new Request.Builder()
                             .url(URL)
                             .header("Connection", "close")
                             ...



回答2:


I encountered this problem today. And it turns out that it is the server fault, as in the server throwed an error and shut down as it is parsing the request.

Check your backend, if it is not yours, notify the owner of that server




回答3:


Just found out the solution
It is really a server side problem AND The solution is to send the content-length header
If you are using php just make your code like this

<?php
ob_start();
// the code - functions .. etc ... example:
$v = print_r($_POST,1);
$v .= "\n\r".print_r($_SERVER,1);
$file = 'file.txt';
file_put_contents($file,$v);
print $v;


// finally
$c = ob_get_contents();
$length = strlen($c);
header('Content-Length: '.$length);
header("Content-Type: text/plain");
//ob_end_flush(); // DID NOT WORK !!
ob_flush()
?>

The trick used here is to send the content-length header using the output buffer




回答4:


I had the same problem, turned out I still had the proxy configured on the emulator while didn't have Charles open anymore




回答5:


I was testing my App with localhost using XAMPP and this error was occurring, The problem was with the port i was using skype using 443 port i simply quit skype and error was resolved!




回答6:


This may be an old thread, as for me, check your internet connection (Wifi) there might be some restriction on accessing some of your endpoints.

I've fixed mine by using/connecting to my mobile data.

-cheers/happy codings




回答7:


"Keepalive makes it difficult for the client to determine where one response ends and the next response begins" 1

It seems that the issue is caused by a collision on reusing alive connection under 2 cases:

  1. server doesn't send Content-Length in response headers

  2. (streaming content case, so no Content-Length can be used) server doesn't use Chunked transfer encoding

So if you observed the exception, sniff http headers (e.g. at Android Studio Profiler tool). If you will see in response header both

  • "Connection: keep-alive"

and no

  • "Content-Length: ***" or "Transfer-Encoding: chunked" headers,

then this is the described above case.

Since it is totally server issue, the solution should be to calculate Content-Length and to put it to response header on server side, if it is possible (or to use Chunked transfer encoding).

Recommendation to close connections on the client side should be considered just as a workaround, keep in mind that it degrades overall performance.



来源:https://stackoverflow.com/questions/45838774/java-io-ioexception-unexpected-end-of-stream-on-connection-in-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!