public interface DataOutput
Modifier and Type | Method and Description |
---|---|
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
void |
writeBoolean(boolean v) |
void |
writeByte(int v) |
void |
writeBytes(String s) |
void |
writeChar(int v) |
void |
writeChars(String s) |
void |
writeDouble(double v) |
void |
writeFloat(float v) |
void |
writeInt(int v) |
void |
writeLong(long v) |
void |
writeShort(int v) |
void |
writeUTF(String str) |
void write(byte[] b) throws IOException
IOException
void write(byte[] b, int off, int len) throws IOException
IOException
void write(int b) throws IOException
IOException
void writeBoolean(boolean v) throws IOException
IOException
void writeByte(int v) throws IOException
IOException
void writeBytes(String s) throws IOException
IOException
void writeChar(int v) throws IOException
IOException
void writeChars(String s) throws IOException
IOException
void writeInt(int v) throws IOException
IOException
void writeLong(long v) throws IOException
IOException
void writeShort(int v) throws IOException
IOException
void writeUTF(String str) throws IOException
IOException
void writeFloat(float v) throws IOException
IOException
void writeDouble(double v) throws IOException
IOException
Copyright © 2005–2018 Javolution. All rights reserved.