Reads an array of long values. @param s array size @return array of longs @throws IOException I/O Exception
(final int s)
| 131 | * @throws IOException I/O Exception |
| 132 | */ |
| 133 | public long[] readLongs(final int s) throws IOException { |
| 134 | final long[] tmp = new long[s]; |
| 135 | for(int a = 0; a < s; ++a) tmp[a] = read8(); |
| 136 | return tmp; |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Read a long value. |