CharArrayWriter.write

CharArrayWriter.write

Class Overview | Class Members | This Package | All Packages

Syntax 1
public void write( int c )
Description
Writes a character to the buffer.

Overrides
write in class Writer



Syntax 2
public void write( char c[], int off, int len )
Parameters
c
the data to be written
off
the start offset in the data
len
the number of chars that are written
Description
Writes characters to the buffer.

Overrides
write in class Writer



Syntax 3
public void write( String str, int off, int len )
Parameters
str
String to be written from
off
Offset from which to start reading characters
len
Number of characters to be written
Description
Write a portion of a string to the buffer.

Overrides
write in class Writer