public abstract void writeByte (int v) throws IOException

Writes to the output stream the eight low- order bits of the argument v. The 24 high-order bits of v are ignored. (This means that writeByte does exactly the same thing as write for an integer argument.) The byte written by this method may be read by the readByte method of interface DataInput, which will then return a byte equal to (byte)v.

Parameters:
v    the byte value to be written.

Exceptions:
IOException    if an I/O error occurs.