I want to create an unbuffered OutputStreamWriter
. The docs (Java 7) say
The resulting bytes are accumulated in a buffer before being written to the underlying output stream. The size of this buffer may be specified, but by default it is large enough for most purposes.
"The size of this buffer may be specified"... how?
(Edit: this was an old bug in the documentation; fixed in Java 9)