Package java.io
Class CharArrayWriter
Description:
This method flush the stream.
Example
char[] ch = {'H','e','l','l','o'};
CharArrayWriter caw = new CharArrayWriter();
caw.flush();
After the construction of a CharArrayWriter, the stream is flushed.