First page Back Continue Last page Summary Graphics
Understanding the I/O (cont)
Writer and OutputStream are similarly parallel. Writer defines these methods for writing characters and arrays of characters:
int write(int c)
int write(char cbuf[])
int write(char cbuf[], int offset, int length)
Notes: