method returns. In many cases, available will return the complete
size of the stream, leading people to write code that calls available,
allocates a byte array of that size, and does a single read into that
byte array, assuming they will get everything in the stream. This is
clearly not true, and the javadocs for the method could do more to
clarify this.
In addition, it's not clear whether available returns a guarantee, or
merely an estimate. For instance, if available returns 1000, and you
attempt to read 1000 bytes, is it acceptable for the stream to return
only 995 bytes (without blocking, of course)? I believe it is. In
some cases it's not possible to determine exactly how many bytes can
be read without doing all the work (e.g., decoding) to return the bytes.
In such a case, it seems acceptable to return an estimate of the number
of bytes that could be returned, as long as the actual read returns the
correct number of bytes without unnecessarily blocking the caller.
Short reads must always be acceptable.
The javadocs for the available method needs to address these issues, and
probably more I haven't thought of yet.
- duplicates
-
JDK-6204246 InputStream.skip(long n) should not skip fewer bytes than min(n, available())
-
- Closed
-
-
JDK-6176772 (spec) FileInputStream.available - return value documentation is misleading
-
- Closed
-
-
JDK-6194334 (spec) InputStream.available - request for clarification of return value
-
- Closed
-
- relates to
-
JDK-4401029 (spec) InputStream.available should specify behavior wrt. EOF
-
- Resolved
-
-
JDK-4869245 (spec) FileInputStream.available spec needs work
-
- Resolved
-
-
JDK-6285124 Small compressed zip entries should be read in one read() operation
-
- Resolved
-
-
JDK-6278051 ClassLoader.getSystemResourceAsStream -- read method behavior change
-
- Closed
-
-
JDK-6280339 Reading from a JAR resource input stream doesn't read all available bytes
-
- Closed
-
-
JDK-4213249 (spec) FileInputStream.available() always returns 0
-
- Closed
-