Not!<br>
The readInt() always reads four bytes (32 bit). If you type<br>
1234, the result will be $31*65536+$32*256+$33*16+$34 (ASCII code*2^...), and not 1234. The readInt() is suitable only DataInputStream-s (and descendants).<br>
<br>
Bye, Otto.<br>