(byte[] out)
| 94 | } |
| 95 | |
| 96 | private void readFully(byte[] out) throws IOException |
| 97 | { |
| 98 | int off = 0; |
| 99 | int len = out.length; |
| 100 | while (len > 0) |
| 101 | { |
| 102 | int count = readBuf(out, off, len); |
| 103 | if (count == -1) |
| 104 | throw new EOFException(); |
| 105 | off += count; |
| 106 | len -= count; |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | private int readLeByte() throws IOException |
| 111 | { |