()
| 108 | } |
| 109 | |
| 110 | private int readLeByte() throws IOException |
| 111 | { |
| 112 | if (avail <= 0) |
| 113 | { |
| 114 | fillBuf(); |
| 115 | if (avail <= 0) |
| 116 | throw new ZipException("EOF in header"); |
| 117 | } |
| 118 | return buf[len - avail--] & 0xff; |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Read an unsigned short in little endian byte order. |