KString Reader
Functions
Link copied to clipboard
Link copied to clipboard
Closes the stream and releases any system resources associated with it. Once the stream has been closed, further read(), ready(), mark(), or reset() invocations will throw an IOException. Closing a previously closed stream has no effect. This method will block while there is another thread blocking on the reader.
Link copied to clipboard
Tells whether this stream supports the mark() operation, which it does.
Link copied to clipboard
Reads a single character.
Reads characters into an array.
Reads characters into a portion of an array.
Attempts to read characters into the specified character buffer. The buffer is used as a repository of characters as-is: the only changes made are the results of a put operation. No flipping or rewinding of the buffer is performed.