...
The general contract for the write()
method says that it writes one byte to the output stream. The byte to be written constitutes the eight lower-order bits of the argument b
, passed to the write()
method; the 24 high-order bits of b
are ignored (see [API 2006] java.io.OutputStream.write()
for more information).
...
Bibliography
...