The methods of Java.IO.InputStream are listed below. For a list of all members, see the InputStream Members list.
See Also: Inherited members from Java.Lang.Object
Available()Returns an estimated number of bytes that can be read or skipped without blocking for more input. | ||
Close()Closes this stream. | ||
Mark(int)Sets a mark position in this InputStream. | ||
MarkSupported()Indicates whether this stream supports the mark() and reset() methods. | ||
abstract | Read()Reads a single byte from this stream and returns it as an integer in the range from 0 to 255. | |
Read(byte[])Equivalent to read(buffer, 0, buffer.length). | ||
Read(byte[], int, int)Reads up to byteCount bytes from this stream and stores them in the byte array buffer starting at byteOffset. | ||
ReadAsync()Documentation for this section has not yet been entered. | ||
ReadAsync(byte[])Documentation for this section has not yet been entered. | ||
ReadAsync(byte[], int, int)Documentation for this section has not yet been entered. | ||
Reset()Resets this stream to the last marked location. | ||
Skip(long)Skips at most byteCount bytes in this stream. | ||
SkipAsync(long)Documentation for this section has not yet been entered. |