StringWriter.write

StringWriter.write

Class Overview | Class Members | This Package | All Packages

Syntax 1
public void write( int c )
Description
Write a single character.

Overrides
write in class Writer



Syntax 2
public void write( char cbuf[], int off, int len )
Parameters
cbuf
Array of characters
off
Offset from which to start writing characters
len
Number of characters to write
Description
Write a portion of an array of characters.

Overrides
write in class Writer



Syntax 3
public void write( String str )
Description
Write a string.

Overrides
write in class Writer



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

Overrides
write in class Writer