1 7 8 package java.io; 9 10 22 public interface ObjectOutput extends DataOutput { 23 31 public void writeObject(Object obj) 32 throws IOException ; 33 34 40 public void write(int b) throws IOException ; 41 42 48 public void write(byte b[]) throws IOException ; 49 50 57 public void write(byte b[], int off, int len) throws IOException ; 58 59 64 public void flush() throws IOException ; 65 66 72 public void close() throws IOException ; 73 } 74 | Popular Tags |