Writes an integer value. @param v value to be written @throws IOException I/O exception
(final int v)
| 193 | * @throws IOException I/O exception |
| 194 | */ |
| 195 | public void write4(final int v) throws IOException { |
| 196 | write(v >>> 24); |
| 197 | write(v >>> 16); |
| 198 | write(v >>> 8); |
| 199 | write(v); |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Writes 5 bytes of a long value. |