java.io
Interface DataOutput
- All Known Subinterfaces:
- Datagram, ObjectOutput
- All Known Implementing Classes:
- DataOutputStream, RandomAccessFile
public interface DataOutput
Standard Java interface.
Compliance: CLDC: 1.1 complete
Compliance: J2SE: 1.4 complete
write
void write(byte[] b)
throws IOException
- Throws:
IOException
write
void write(byte[] b,
int off,
int len)
throws IOException
- Throws:
IOException
write
void write(int b)
throws IOException
- Throws:
IOException
writeBoolean
void writeBoolean(boolean v)
throws IOException
- Throws:
IOException
writeByte
void writeByte(int v)
throws IOException
- Throws:
IOException
writeBytes
void writeBytes(String s)
throws IOException
- Throws:
IOException
writeChar
void writeChar(int v)
throws IOException
- Throws:
IOException
writeChars
void writeChars(String s)
throws IOException
- Throws:
IOException
writeDouble
void writeDouble(double v)
throws IOException
- Throws:
IOException
writeFloat
void writeFloat(float v)
throws IOException
- Throws:
IOException
writeInt
void writeInt(int v)
throws IOException
- Throws:
IOException
writeLong
void writeLong(long v)
throws IOException
- Throws:
IOException
writeShort
void writeShort(int v)
throws IOException
- Throws:
IOException
writeUTF
void writeUTF(String str)
throws IOException
- Throws:
IOException