Package java.io
Interface DataOutput
-
- All Known Subinterfaces:
Datagram,ObjectOutput
- All Known Implementing Classes:
DataOutputStream,ObjectOutputStream,RandomAccessFile
public interface DataOutput
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwrite(byte[] var0)voidwrite(byte[] var0, int var1, int var2)voidwrite(int var0)voidwriteBoolean(boolean var0)voidwriteByte(int var0)voidwriteBytes(String var0)voidwriteChar(int var0)voidwriteChars(String var0)voidwriteDouble(double var0)voidwriteFloat(float var0)voidwriteInt(int var0)voidwriteLong(long var0)voidwriteShort(int var0)voidwriteUTF(String var0)
-
-
-
Method Detail
-
write
void write(byte[] var0) throws IOException- Throws:
IOException
-
write
void write(byte[] var0, int var1, int var2) throws IOException- Throws:
IOException
-
write
void write(int var0) throws IOException- Throws:
IOException
-
writeBoolean
void writeBoolean(boolean var0) throws IOException- Throws:
IOException
-
writeByte
void writeByte(int var0) throws IOException- Throws:
IOException
-
writeBytes
void writeBytes(String var0) throws IOException
- Throws:
IOException
-
writeChar
void writeChar(int var0) throws IOException- Throws:
IOException
-
writeChars
void writeChars(String var0) throws IOException
- Throws:
IOException
-
writeDouble
void writeDouble(double var0) throws IOException- Throws:
IOException
-
writeFloat
void writeFloat(float var0) throws IOException- Throws:
IOException
-
writeInt
void writeInt(int var0) throws IOException- Throws:
IOException
-
writeLong
void writeLong(long var0) throws IOException- Throws:
IOException
-
writeShort
void writeShort(int var0) throws IOException- Throws:
IOException
-
writeUTF
void writeUTF(String var0) throws IOException
- Throws:
IOException
-
-