Read a long value. @return read value @throws IOException I/O Exception
()
| 142 | * @throws IOException I/O Exception |
| 143 | */ |
| 144 | private long read8() throws IOException { |
| 145 | return ((long) read() << 56) + ((long) (read() & 255) << 48) |
| 146 | + ((long) (read() & 255) << 40) + ((long) (read() & 255) << 32) |
| 147 | + ((long) (read() & 255) << 24) + ((read() & 255) << 16) |
| 148 | + ((read() & 255) << 8) + (read() & 255); |
| 149 | } |
| 150 | } |