I want to know if an InputStreamn is empty, but without using the methods read(). Is there a way to know if it's empty without reading from it?
|
feedback
|
|
I think you are looking for | |||||||||||||
feedback
|
|
No, you can't. You may be able to use a | |||||
feedback
|
|
If the
If you don't control what kind of | |||
feedback
|
|
How about using inputStreamReader.ready() to find out?
| |||
feedback
|
|
Depending on which subclass it really is: http://java.sun.com/j2se/1.4.2/docs/api/java/io/InputStream.html#available() might be sufficient. | |||
|
feedback
|
|
You can use the | |||||||||
feedback
|
| ||||
|
feedback
|