write
Writes a single character. The character to be written is contained in the 16 low-order bits of the given integer value; the 16 high-order bits are ignored.
Subclasses that intend to support efficient single-character output should override this method.
Parameters
int specifying a character to be written
Throws
If an I/O error occurs
Writes a portion of an array of characters.
Parameters
Array of characters
Offset from which to start writing characters
Number of characters to write
Throws
Implementations should throw this exception if off is negative, or len is negative, or off + len is negative or greater than the length of the given array
If an I/O error occurs
Writes a portion of a string.
Parameters
A String
Offset from which to start writing characters
Number of characters to write
Throws
Implementations should throw this exception if off is negative, or len is negative, or off + len is negative or greater than the length of the given string
If an I/O error occurs