(InputStream stream)
| 63 | |
| 64 | |
| 65 | public static int readOrEOF(InputStream stream) throws IOException { |
| 66 | int data = stream.read(); |
| 67 | if (data == -1) throw new EOFException("No data remains"); |
| 68 | return data; |
| 69 | } |
| 70 | |
| 71 | |
| 72 | public static int getInt2(byte[] data) { |