()
| 88 | } |
| 89 | |
| 90 | private String rawString() throws IOException { |
| 91 | int length = rawShort(); |
| 92 | byte[] array = new byte[length]; |
| 93 | readFully(array); |
| 94 | return new String(array); |
| 95 | } |
| 96 | |
| 97 | public int read(byte[] b, int offset, int length) throws IOException { |
| 98 | return in.read(b, offset, length); |