1 9 package j2me.io; 10 import j2me.io.DataOutput; 11 import java.io.IOException ; 12 13 public interface ObjectOutput extends DataOutput { 14 void writeObject(Object obj) throws IOException ; 15 16 void write(int b) throws IOException ; 17 18 void write(byte b[]) throws IOException ; 19 20 void write(byte b[], int off, int len) throws IOException ; 21 22 void flush() throws IOException ; 23 24 void close() throws IOException ; 25 } | Popular Tags |