1 9 package j2me.io; 10 import java.io.IOException ; 11 import j2me.io.DataInput; 12 13 public interface ObjectInput extends DataInput { 14 Object readObject() throws ClassNotFoundException , IOException ; 15 16 int read() throws IOException ; 17 18 int read(byte b[]) throws IOException ; 19 20 int read(byte b[], int off, int len) throws IOException ; 21 22 long skip(long n) throws IOException ; 23 24 int available() throws IOException ; 25 26 void close() throws IOException ; 27 } | Popular Tags |