Why does the getInputStream() method of HttpURLConnection return an object of type RealBufferedSource?
I'm attempting to send an HTTP request from an AsyncTask
in Android Studio, using the code below.
protected Long doInBackground(URL... urls) {
try {
HttpURLConnection connection = (HttpURLConnection) urls[0].openConnection();
connection.setRequestMethod("POST");
connection.connect();
byte loginRequestBytes = new Gson().toJson(loginRequest, LoginRequest.class).getBytes();
connection.getOutputStream().write(loginRequestBytes);
if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
ResponseBody responseBody = (ResponseBody) connection.getInputStream(); // ResponseBody extends InputStream
loginResponse = new Gson().fromJson(responseBody.toString(), LoginResponse.class);
}
} catch (IOException e) {
Log.e("HttpClient", e.getMessage(), e);
}
return null;
}
My ResponseBody
class extends InputStream
, so I thought that using
ResponseBody responseBody = (ResponseBody) connection.getInputStream();
would work, but here is the problem:
I'm getting a ClassCastException
in my code, because connection.getInputStream()
returns an object of type com.android.okhttp.okio.RealBufferedSource$1
. Why is getInputStream
not returning InputStream
as per Java documentation? Is this an android-specific issue?
EDIT: I defined the ResponseBody class myself (shown below). It is not the one from okhttp
, and it does extend InputStream
, as far as I can tell.
public class ResponseBody extends InputStream {
@Override
public String toString() {
StringBuilder stringBuilder = new StringBuilder();
String line;
try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(this, "UTF-8"))) {
while ((line = bufferedReader.readLine()) != null) {
stringBuilder.append(line);
}
} catch (IOException e) {
e.printStackTrace();
}
return stringBuilder.toString();
}
@Override
public int read() throws IOException {
return 0;
}
}
java

add a comment |
I'm attempting to send an HTTP request from an AsyncTask
in Android Studio, using the code below.
protected Long doInBackground(URL... urls) {
try {
HttpURLConnection connection = (HttpURLConnection) urls[0].openConnection();
connection.setRequestMethod("POST");
connection.connect();
byte loginRequestBytes = new Gson().toJson(loginRequest, LoginRequest.class).getBytes();
connection.getOutputStream().write(loginRequestBytes);
if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
ResponseBody responseBody = (ResponseBody) connection.getInputStream(); // ResponseBody extends InputStream
loginResponse = new Gson().fromJson(responseBody.toString(), LoginResponse.class);
}
} catch (IOException e) {
Log.e("HttpClient", e.getMessage(), e);
}
return null;
}
My ResponseBody
class extends InputStream
, so I thought that using
ResponseBody responseBody = (ResponseBody) connection.getInputStream();
would work, but here is the problem:
I'm getting a ClassCastException
in my code, because connection.getInputStream()
returns an object of type com.android.okhttp.okio.RealBufferedSource$1
. Why is getInputStream
not returning InputStream
as per Java documentation? Is this an android-specific issue?
EDIT: I defined the ResponseBody class myself (shown below). It is not the one from okhttp
, and it does extend InputStream
, as far as I can tell.
public class ResponseBody extends InputStream {
@Override
public String toString() {
StringBuilder stringBuilder = new StringBuilder();
String line;
try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(this, "UTF-8"))) {
while ((line = bufferedReader.readLine()) != null) {
stringBuilder.append(line);
}
} catch (IOException e) {
e.printStackTrace();
}
return stringBuilder.toString();
}
@Override
public int read() throws IOException {
return 0;
}
}
java

1
this may help u Understanding getInputStream and getOutputStream
– Nilesh Rathod
Dec 31 '18 at 5:36
FYI theHttpURLConnection.getInputStream()
returns anInputStream
– Nilesh Rathod
Dec 31 '18 at 5:40
"My ResponseBody class extends InputStream, so I thought that using." -> Which response body are you referring to? This one - square.github.io/okhttp/3.x/okhttp/okhttp3/ResponseBody.html. This does not extend InputStream per the documentation. Would you like to take a look at this page: developer.android.com/reference/java/net/HttpURLConnection
– Rax
Dec 31 '18 at 6:14
@RakeshRoy I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit)
– cgoates
Jan 1 at 20:59
add a comment |
I'm attempting to send an HTTP request from an AsyncTask
in Android Studio, using the code below.
protected Long doInBackground(URL... urls) {
try {
HttpURLConnection connection = (HttpURLConnection) urls[0].openConnection();
connection.setRequestMethod("POST");
connection.connect();
byte loginRequestBytes = new Gson().toJson(loginRequest, LoginRequest.class).getBytes();
connection.getOutputStream().write(loginRequestBytes);
if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
ResponseBody responseBody = (ResponseBody) connection.getInputStream(); // ResponseBody extends InputStream
loginResponse = new Gson().fromJson(responseBody.toString(), LoginResponse.class);
}
} catch (IOException e) {
Log.e("HttpClient", e.getMessage(), e);
}
return null;
}
My ResponseBody
class extends InputStream
, so I thought that using
ResponseBody responseBody = (ResponseBody) connection.getInputStream();
would work, but here is the problem:
I'm getting a ClassCastException
in my code, because connection.getInputStream()
returns an object of type com.android.okhttp.okio.RealBufferedSource$1
. Why is getInputStream
not returning InputStream
as per Java documentation? Is this an android-specific issue?
EDIT: I defined the ResponseBody class myself (shown below). It is not the one from okhttp
, and it does extend InputStream
, as far as I can tell.
public class ResponseBody extends InputStream {
@Override
public String toString() {
StringBuilder stringBuilder = new StringBuilder();
String line;
try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(this, "UTF-8"))) {
while ((line = bufferedReader.readLine()) != null) {
stringBuilder.append(line);
}
} catch (IOException e) {
e.printStackTrace();
}
return stringBuilder.toString();
}
@Override
public int read() throws IOException {
return 0;
}
}
java

I'm attempting to send an HTTP request from an AsyncTask
in Android Studio, using the code below.
protected Long doInBackground(URL... urls) {
try {
HttpURLConnection connection = (HttpURLConnection) urls[0].openConnection();
connection.setRequestMethod("POST");
connection.connect();
byte loginRequestBytes = new Gson().toJson(loginRequest, LoginRequest.class).getBytes();
connection.getOutputStream().write(loginRequestBytes);
if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
ResponseBody responseBody = (ResponseBody) connection.getInputStream(); // ResponseBody extends InputStream
loginResponse = new Gson().fromJson(responseBody.toString(), LoginResponse.class);
}
} catch (IOException e) {
Log.e("HttpClient", e.getMessage(), e);
}
return null;
}
My ResponseBody
class extends InputStream
, so I thought that using
ResponseBody responseBody = (ResponseBody) connection.getInputStream();
would work, but here is the problem:
I'm getting a ClassCastException
in my code, because connection.getInputStream()
returns an object of type com.android.okhttp.okio.RealBufferedSource$1
. Why is getInputStream
not returning InputStream
as per Java documentation? Is this an android-specific issue?
EDIT: I defined the ResponseBody class myself (shown below). It is not the one from okhttp
, and it does extend InputStream
, as far as I can tell.
public class ResponseBody extends InputStream {
@Override
public String toString() {
StringBuilder stringBuilder = new StringBuilder();
String line;
try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(this, "UTF-8"))) {
while ((line = bufferedReader.readLine()) != null) {
stringBuilder.append(line);
}
} catch (IOException e) {
e.printStackTrace();
}
return stringBuilder.toString();
}
@Override
public int read() throws IOException {
return 0;
}
}
java

java

edited Jan 1 at 20:54
cgoates
asked Dec 31 '18 at 5:34
cgoatescgoates
164
164
1
this may help u Understanding getInputStream and getOutputStream
– Nilesh Rathod
Dec 31 '18 at 5:36
FYI theHttpURLConnection.getInputStream()
returns anInputStream
– Nilesh Rathod
Dec 31 '18 at 5:40
"My ResponseBody class extends InputStream, so I thought that using." -> Which response body are you referring to? This one - square.github.io/okhttp/3.x/okhttp/okhttp3/ResponseBody.html. This does not extend InputStream per the documentation. Would you like to take a look at this page: developer.android.com/reference/java/net/HttpURLConnection
– Rax
Dec 31 '18 at 6:14
@RakeshRoy I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit)
– cgoates
Jan 1 at 20:59
add a comment |
1
this may help u Understanding getInputStream and getOutputStream
– Nilesh Rathod
Dec 31 '18 at 5:36
FYI theHttpURLConnection.getInputStream()
returns anInputStream
– Nilesh Rathod
Dec 31 '18 at 5:40
"My ResponseBody class extends InputStream, so I thought that using." -> Which response body are you referring to? This one - square.github.io/okhttp/3.x/okhttp/okhttp3/ResponseBody.html. This does not extend InputStream per the documentation. Would you like to take a look at this page: developer.android.com/reference/java/net/HttpURLConnection
– Rax
Dec 31 '18 at 6:14
@RakeshRoy I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit)
– cgoates
Jan 1 at 20:59
1
1
this may help u Understanding getInputStream and getOutputStream
– Nilesh Rathod
Dec 31 '18 at 5:36
this may help u Understanding getInputStream and getOutputStream
– Nilesh Rathod
Dec 31 '18 at 5:36
FYI the
HttpURLConnection.getInputStream()
returns an InputStream
– Nilesh Rathod
Dec 31 '18 at 5:40
FYI the
HttpURLConnection.getInputStream()
returns an InputStream
– Nilesh Rathod
Dec 31 '18 at 5:40
"My ResponseBody class extends InputStream, so I thought that using." -> Which response body are you referring to? This one - square.github.io/okhttp/3.x/okhttp/okhttp3/ResponseBody.html. This does not extend InputStream per the documentation. Would you like to take a look at this page: developer.android.com/reference/java/net/HttpURLConnection
– Rax
Dec 31 '18 at 6:14
"My ResponseBody class extends InputStream, so I thought that using." -> Which response body are you referring to? This one - square.github.io/okhttp/3.x/okhttp/okhttp3/ResponseBody.html. This does not extend InputStream per the documentation. Would you like to take a look at this page: developer.android.com/reference/java/net/HttpURLConnection
– Rax
Dec 31 '18 at 6:14
@RakeshRoy I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit)
– cgoates
Jan 1 at 20:59
@RakeshRoy I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit)
– cgoates
Jan 1 at 20:59
add a comment |
1 Answer
1
active
oldest
votes
The getInputStream()
method does return an InputStream
. But you are attempting to cast the result to a ResponseBody
. That won't work unless the result object is an instance of a subtype of ResponseBody
... which it isn't.
Now, it is unclear which ResponseBody
class you are trying to use here, but if it is okhttp3.ResponseBody
(javadoc), then you can't obtain it by casting an InputStream
.
I actually defined the
ResponseBody
class myself. It is a simple extension ofInputStream
(see edit), so I seems like the downward cast should work
Ah. I see.
No that won't work. You cannot cast an object to a type that it isn't. That's not what type casts do ... for reference types.
You have an instance of the anonymous inner class
com.android.okhttp.okio.RealBufferedSource$1
which is a subtype of InputStream
. You are trying to cast it to a ResponseBody
which is also a subtype of InputStream
. But ResponseBody
is NOT a superclass or interface of the anonymous class, so the typecast cannot succeed.
I suggest that you rewrite ResponseBody
to be a wrapper class for InputStream
and / or use one of the solutions listed here fro extracting the contents of an InputStream
to a String
:
- How to read / convert an InputStream into a String in Java?
Thanks for your answer! I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit), so I seems like the downward cast should work
– cgoates
Jan 1 at 20:59
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53983946%2fwhy-does-the-getinputstream-method-of-httpurlconnection-return-an-object-of-ty%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The getInputStream()
method does return an InputStream
. But you are attempting to cast the result to a ResponseBody
. That won't work unless the result object is an instance of a subtype of ResponseBody
... which it isn't.
Now, it is unclear which ResponseBody
class you are trying to use here, but if it is okhttp3.ResponseBody
(javadoc), then you can't obtain it by casting an InputStream
.
I actually defined the
ResponseBody
class myself. It is a simple extension ofInputStream
(see edit), so I seems like the downward cast should work
Ah. I see.
No that won't work. You cannot cast an object to a type that it isn't. That's not what type casts do ... for reference types.
You have an instance of the anonymous inner class
com.android.okhttp.okio.RealBufferedSource$1
which is a subtype of InputStream
. You are trying to cast it to a ResponseBody
which is also a subtype of InputStream
. But ResponseBody
is NOT a superclass or interface of the anonymous class, so the typecast cannot succeed.
I suggest that you rewrite ResponseBody
to be a wrapper class for InputStream
and / or use one of the solutions listed here fro extracting the contents of an InputStream
to a String
:
- How to read / convert an InputStream into a String in Java?
Thanks for your answer! I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit), so I seems like the downward cast should work
– cgoates
Jan 1 at 20:59
add a comment |
The getInputStream()
method does return an InputStream
. But you are attempting to cast the result to a ResponseBody
. That won't work unless the result object is an instance of a subtype of ResponseBody
... which it isn't.
Now, it is unclear which ResponseBody
class you are trying to use here, but if it is okhttp3.ResponseBody
(javadoc), then you can't obtain it by casting an InputStream
.
I actually defined the
ResponseBody
class myself. It is a simple extension ofInputStream
(see edit), so I seems like the downward cast should work
Ah. I see.
No that won't work. You cannot cast an object to a type that it isn't. That's not what type casts do ... for reference types.
You have an instance of the anonymous inner class
com.android.okhttp.okio.RealBufferedSource$1
which is a subtype of InputStream
. You are trying to cast it to a ResponseBody
which is also a subtype of InputStream
. But ResponseBody
is NOT a superclass or interface of the anonymous class, so the typecast cannot succeed.
I suggest that you rewrite ResponseBody
to be a wrapper class for InputStream
and / or use one of the solutions listed here fro extracting the contents of an InputStream
to a String
:
- How to read / convert an InputStream into a String in Java?
Thanks for your answer! I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit), so I seems like the downward cast should work
– cgoates
Jan 1 at 20:59
add a comment |
The getInputStream()
method does return an InputStream
. But you are attempting to cast the result to a ResponseBody
. That won't work unless the result object is an instance of a subtype of ResponseBody
... which it isn't.
Now, it is unclear which ResponseBody
class you are trying to use here, but if it is okhttp3.ResponseBody
(javadoc), then you can't obtain it by casting an InputStream
.
I actually defined the
ResponseBody
class myself. It is a simple extension ofInputStream
(see edit), so I seems like the downward cast should work
Ah. I see.
No that won't work. You cannot cast an object to a type that it isn't. That's not what type casts do ... for reference types.
You have an instance of the anonymous inner class
com.android.okhttp.okio.RealBufferedSource$1
which is a subtype of InputStream
. You are trying to cast it to a ResponseBody
which is also a subtype of InputStream
. But ResponseBody
is NOT a superclass or interface of the anonymous class, so the typecast cannot succeed.
I suggest that you rewrite ResponseBody
to be a wrapper class for InputStream
and / or use one of the solutions listed here fro extracting the contents of an InputStream
to a String
:
- How to read / convert an InputStream into a String in Java?
The getInputStream()
method does return an InputStream
. But you are attempting to cast the result to a ResponseBody
. That won't work unless the result object is an instance of a subtype of ResponseBody
... which it isn't.
Now, it is unclear which ResponseBody
class you are trying to use here, but if it is okhttp3.ResponseBody
(javadoc), then you can't obtain it by casting an InputStream
.
I actually defined the
ResponseBody
class myself. It is a simple extension ofInputStream
(see edit), so I seems like the downward cast should work
Ah. I see.
No that won't work. You cannot cast an object to a type that it isn't. That's not what type casts do ... for reference types.
You have an instance of the anonymous inner class
com.android.okhttp.okio.RealBufferedSource$1
which is a subtype of InputStream
. You are trying to cast it to a ResponseBody
which is also a subtype of InputStream
. But ResponseBody
is NOT a superclass or interface of the anonymous class, so the typecast cannot succeed.
I suggest that you rewrite ResponseBody
to be a wrapper class for InputStream
and / or use one of the solutions listed here fro extracting the contents of an InputStream
to a String
:
- How to read / convert an InputStream into a String in Java?
edited Jan 2 at 0:06
answered Dec 31 '18 at 6:02
Stephen CStephen C
523k72582942
523k72582942
Thanks for your answer! I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit), so I seems like the downward cast should work
– cgoates
Jan 1 at 20:59
add a comment |
Thanks for your answer! I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit), so I seems like the downward cast should work
– cgoates
Jan 1 at 20:59
Thanks for your answer! I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit), so I seems like the downward cast should work
– cgoates
Jan 1 at 20:59
Thanks for your answer! I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit), so I seems like the downward cast should work
– cgoates
Jan 1 at 20:59
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53983946%2fwhy-does-the-getinputstream-method-of-httpurlconnection-return-an-object-of-ty%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
this may help u Understanding getInputStream and getOutputStream
– Nilesh Rathod
Dec 31 '18 at 5:36
FYI the
HttpURLConnection.getInputStream()
returns anInputStream
– Nilesh Rathod
Dec 31 '18 at 5:40
"My ResponseBody class extends InputStream, so I thought that using." -> Which response body are you referring to? This one - square.github.io/okhttp/3.x/okhttp/okhttp3/ResponseBody.html. This does not extend InputStream per the documentation. Would you like to take a look at this page: developer.android.com/reference/java/net/HttpURLConnection
– Rax
Dec 31 '18 at 6:14
@RakeshRoy I actually defined the ResponseBody class myself. It is a simple extension of InputStream (see edit)
– cgoates
Jan 1 at 20:59