What is an InputStream's available() method is supposed to return when the end of the stream is reached?
The documentation doesn't specify the behavior.
|
What is an The documentation doesn't specify the behavior. |
|||||
|
|
The JavaDoc does tell you in the Returns section -
(from InputStream JavaDoc) |
|||
|
|
Don't use
|
|||
|
|
|
Theoretically if end of stream is reached there are not bytes to read and available returns 0. But be careful with it. Not all streams provide real implementation of this method. InputStream itself always returns 0. If you need non-blocking functionality, i.e. reading from stream without being blocked on read use NIO instead. |
|||
|
|
|
From the Java 7 documentation: So, I would say it should return 0 in this case. That also seems the most intuitive behaviour to me. |
|||
|
|
|
Returns an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking by the next invocation of a method for this input stream. The next invocation might be the same thread or another thread. A single read or skip of this many bytes will not block, but may read or skip fewer bytes.
http://download.oracle.com/javase/6/docs/api/java/io/InputStream.html#available%28%29 |
|||
|
|