Question

I get an EOFException from getInputStream in the following Android Code.

private void downloadUrl() {
    HttpsURLConnection conn = null;
    DataOutputStream printout = null;
    try {
        try {
            conn = (HttpsURLConnection) new URL("some url").openConnection();
            conn.setRequestMethod("POST");
            conn.setDoInput(true);
            conn.setDoOutput(true);
            conn.setUseCaches(false);
            conn.setAllowUserInteraction(false);
            conn.setRequestProperty("Accept", "application/json");
            conn.setRequestProperty("Content-Type", "application/json; charset=utf-8");
        } 
        catch (ProtocolException e){
        }

        JSONObject jsonReq = new JSONObject();
        jsonReq.put("userID", "id");
        jsonReq.put("password", "1234");

        OutputStream output = conn.getOutputStream();
        try {
            OutputStreamWriter wr = new OutputStreamWriter(output);
            wr.write(URLEncoder.encode(jsonReq.toString(),"utf-8")); 
            wr.flush();
            wr.close();
        }
        catch (IOException e) {
        }

        InputStream in = conn.getInputStream();   //I get EOFException here
        try {
            BufferedReader rd  = new BufferedReader(new InputStreamReader(in));
            String responseSingle = null;
            while ((responseSingle = rd.readLine()) != null) {
                response = response + responseSingle;
            }
            rd.close(); 
        }
        catch (IOException e) {
        }
        finally {
            if (in != null)
            in.close();
        }
    } 
    catch (IOException e){
    } 
    catch (JSONException e) {
    } 
    finally{
        if(conn!=null)  
            conn.disconnect();
    }  
}

What is causing this Exception?

Was it helpful?

Solution

public class EOFException extends IOException:

Signals that an end of file or end of stream has been reached unexpectedly during input.

http://docs.oracle.com/javase/7/docs/api/java/io/EOFException.html

You are calling conn.getOutputStream(); and then calling conn.getInputStream(); without resetting. You are already at the end of the file.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top