PrintWriter.write
Class Overview | Class Members |
This Package |
All Packages
public void write( int c )
Description
Write a single character.
Overrides
write in class Writer
public void write( char buf[],
int off,
int len )
Description
Write a portion of an array of characters.
Overrides
write in class Writer
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
public void write( String s,
int off,
int len )
Description
Write a portion of a string.
Overrides
write in class Writer
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