1 7 8 package java.io; 9 10 22 public interface ObjectInput extends DataInput { 23 33 public Object readObject() 34 throws ClassNotFoundException , IOException ; 35 36 43 public int read() throws IOException ; 44 45 53 public int read(byte b[]) throws IOException ; 54 55 65 public int read(byte b[], int off, int len) throws IOException ; 66 67 73 public long skip(long n) throws IOException ; 74 75 81 public int available() throws IOException ; 82 83 89 public void close() throws IOException ; 90 } 91 | Popular Tags |