First page Back Continue Last page Overview Graphics
Output Superclasses
Writer and OutputStream are similarly parallel.
Writer defines these methods for writing characters and arrays of characters:
int write(int c) //write a single character.
int write(char cbuf[]) //write an array of chars.
//write a portion of an array of chars.
int write(char cbuf[], int offset, int length)