Package java.io
Interface DataOutput
- All Known Subinterfaces:
Datagram
,ObjectOutput
- All Known Implementing Classes:
DataOutputStream
,ObjectOutputStream
,RandomAccessFile
public interface DataOutput
-
Method Summary
Modifier and TypeMethodDescriptionvoid
write
(byte[] var0) void
write
(byte[] var0, int var1, int var2) void
write
(int var0) void
writeBoolean
(boolean var0) void
writeByte
(int var0) void
writeBytes
(String var0) void
writeChar
(int var0) void
writeChars
(String var0) void
writeDouble
(double var0) void
writeFloat
(float var0) void
writeInt
(int var0) void
writeLong
(long var0) void
writeShort
(int var0) void
-
Method Details
-
write
- Throws:
IOException
-
write
- Throws:
IOException
-
write
- Throws:
IOException
-
writeBoolean
- Throws:
IOException
-
writeByte
- Throws:
IOException
-
writeBytes
- Throws:
IOException
-
writeChar
- Throws:
IOException
-
writeChars
- Throws:
IOException
-
writeDouble
- Throws:
IOException
-
writeFloat
- Throws:
IOException
-
writeInt
- Throws:
IOException
-
writeLong
- Throws:
IOException
-
writeShort
- Throws:
IOException
-
writeUTF
- Throws:
IOException
-