Package java.io
Class CharArrayWriter

Public Method size

int size()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

This method returns the current size of the buffer.

Example

   char[] ch = {'H','E','L','L','O'};
   CharArrayWriter caw = new CharArrayWriter();
   caw.write(ch);
   Logger.log(ch.size());

The size method returns current size of the buffer.