(byte)(0xff & (v >> 8)) (byte)(0xff & v)
The bytes written by this method may be read by the readShort
method of interface DataInput
, which will then return a short
equal to (short)v
.
@param v the short
value to be written.
@throws IOException if an I/O error occurs.
|
|
|
|
|
|
|
|
|
|