PrintWriter.write

PrintWriter.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 buf[], int off, int len )
Description
Write a portion of an array of characters.

Overrides
write in class Writer



Syntax 3
public void write( char buf[] )
Description
Write an array of characters. This method cannot be inherited from the Writer class because it must suppress I/O exceptions.

Overrides
write in class Writer



Syntax 4
public void write( String s, int off, int len )
Description
Write a portion of a string.

Overrides
write in class Writer



Syntax 5
public void write( String s )
Description
Write a string. This method cannot be inherited from the Writer class because it must suppress I/O exceptions.

Overrides
write in class Writer