Reads a signed 8-bit value from this file. This method reads a byte from the file. If the byte read is
b
, where
0 <= b <= 255
, then the result is:
This method blocks until the byte is read, the end of the stream is detected, or an exception is thrown.
@return the next byte of this file as a signed 8-bit
byte
.
@throws EOFException if this file has reached the end.
@throws IOException if an I/O error occurs.