First page Back Continue Last page Summary Graphics
I/O Streams (Memory)
Use StringReader to read characters from a String in memory. Use StringWriter to write to a String. StringWriter collects the characters written to it in a StringBuffer, which can then be converted to a String.
StringBufferInputStream is similar to StringReader, except that it reads bytes from a StringBuffer.
Notes: