Writes a short value. @param v value to be written @throws IOException I/O exception
(final int v)
| 183 | * @throws IOException I/O exception |
| 184 | */ |
| 185 | public void write2(final int v) throws IOException { |
| 186 | write(v >>> 8); |
| 187 | write(v); |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * Writes an integer value. |