public interface DataOutput
| Modifier and Type | Method and Description |
|---|---|
void |
write(byte[] abyte0) |
void |
write(byte[] abyte0,
int i,
int j) |
void |
write(int i) |
void |
writeBoolean(boolean flag) |
void |
writeByte(int i) |
void |
writeBytes(String s) |
void |
writeChar(int i) |
void |
writeChars(String s) |
void |
writeDouble(double d) |
void |
writeFloat(float f) |
void |
writeInt(int i) |
void |
writeLong(long l) |
void |
writeShort(int i) |
void |
writeUTF(String s) |
void write(int i)
throws IOException
i - ?IOException - ?void write(byte[] abyte0)
throws IOException
abyte0 - ?IOException - ?void write(byte[] abyte0,
int i,
int j)
throws IOException
abyte0 - ?i - ?j - ?IOException - ?void writeBoolean(boolean flag)
throws IOException
flag - ?IOException - ?void writeByte(int i)
throws IOException
i - ?IOException - ?void writeBytes(String s) throws IOException
s - ?IOException - ?void writeChar(int i)
throws IOException
i - ?IOException - ?void writeChars(String s) throws IOException
s - ?IOException - ?void writeDouble(double d)
throws IOException
d - ?IOException - ?void writeFloat(float f)
throws IOException
f - ?IOException - ?void writeInt(int i)
throws IOException
i - ?IOException - ?void writeLong(long l)
throws IOException
l - ?IOException - ?void writeShort(int i)
throws IOException
i - ?IOException - ?void writeUTF(String s) throws IOException
s - ?IOException - ?