1 7 8 package java.io; 9 10 32 public 33 interface DataOutput { 34 43 void write(int b) throws IOException ; 44 45 58 void write(byte b[]) throws IOException ; 59 60 80 void write(byte b[], int off, int len) throws IOException ; 81 82 97 void writeBoolean(boolean v) throws IOException ; 98 99 114 void writeByte(int v) throws IOException ; 115 116 134 void writeShort(int v) throws IOException ; 135 136 155 void writeChar(int v) throws IOException ; 156 157 176 void writeInt(int v) throws IOException ; 177 178 202 void writeLong(long v) throws IOException ; 203 204 221 void writeFloat(float v) throws IOException ; 222 223 240 void writeDouble(double v) throws IOException ; 241 242 262 void writeBytes(String s) throws IOException ; 263 264 282 void writeChars(String s) throws IOException ; 283 284 336 void writeUTF(String str) throws IOException ; 337 } 338 | Popular Tags |