(int count)
| 70 | } |
| 71 | |
| 72 | public int skipBytes(int count) throws IOException { |
| 73 | if (position + count > length()) throw new IOException(); |
| 74 | this.position = position + count; |
| 75 | return count; |
| 76 | } |
| 77 | |
| 78 | public int read(byte b[], int off, int len) throws IOException { |
| 79 | if(b == null) |