InputStreamReader.markSupported is false
Hello, I need to “un-read” characters from an InputStreamReader. For that purpose I wanted to use mark and reset but markSupported returns false for the InputStreamReader class, since it doesn’t maintain an internal buffer and/or queue of characters. I know about BufferedInputStream and PushbackInputStream but neither is appropriate he...