Reads a long value. @return read value @throws IOException I/O Exception
()
| 120 | * @throws IOException I/O Exception |
| 121 | */ |
| 122 | public long readLong() throws IOException { |
| 123 | final int v = readNum(); |
| 124 | return v == 0x3FFF ? read8() : v; |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Reads an array of long values. |