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


Method Summary
 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)
           
 

Method Detail

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