Package java.io
Class CharArrayWriter

Public Method flush

void flush()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

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.