1 7 8 package java.io; 9 10 176 public 177 interface DataInput { 178 218 void readFully(byte b[]) throws IOException ; 219 220 264 void readFully(byte b[], int off, int len) throws IOException ; 265 266 287 int skipBytes(int n) throws IOException ; 288 289 302 boolean readBoolean() throws IOException ; 303 304 318 byte readByte() throws IOException ; 319 320 338 int readUnsignedByte() throws IOException ; 339 340 359 short readShort() throws IOException ; 360 361 382 int readUnsignedShort() throws IOException ; 383 384 403 char readChar() throws IOException ; 404 405 427 int readInt() throws IOException ; 428 429 461 long readLong() throws IOException ; 462 463 481 float readFloat() throws IOException ; 482 483 501 double readDouble() throws IOException ; 502 503 542 String readLine() throws IOException ; 543 544 629 String readUTF() throws IOException ; 630 } 631 | Popular Tags |