java.io
Interface DataOutput

All Known Subinterfaces:
ObjectOutput
All Known Implementing Classes:
ObjectOutputStream, RandomAccessFile

public interface DataOutput


Method Summary
 void write(byte[])
           
 void write(byte[], int, int)
           
 void write(int)
           
 void writeBoolean(boolean)
           
 void writeByte(int)
           
 void writeBytes(String)
           
 void writeChar(int)
           
 void writeChars(String)
           
 void writeDouble(double)
           
 void writeFloat(float)
           
 void writeInt(int)
           
 void writeLong(long)
           
 void writeShort(int)
           
 void writeUTF(String)
           
 

Method Detail

write

public void write(int)
           throws IOException
IOException

write

public void write(byte[])
           throws IOException
IOException

write

public void write(byte[],
                  int,
                  int)
           throws IOException
IOException

writeBoolean

public void writeBoolean(boolean)
                  throws IOException
IOException

writeByte

public void writeByte(int)
               throws IOException
IOException

writeShort

public void writeShort(int)
                throws IOException
IOException

writeChar

public void writeChar(int)
               throws IOException
IOException

writeInt

public void writeInt(int)
              throws IOException
IOException

writeLong

public void writeLong(long)
               throws IOException
IOException

writeFloat

public void writeFloat(float)
                throws IOException
IOException

writeDouble

public void writeDouble(double)
                 throws IOException
IOException

writeBytes

public void writeBytes(String)
                throws IOException
IOException

writeChars

public void writeChars(String)
                throws IOException
IOException

writeUTF

public void writeUTF(String)
              throws IOException
IOException