KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > io > DataOutput

java.io
Interface DataOutput

All Known Subinterfaces:
ImageOutputStream, ObjectOutput
All Known Implementing Classes:
DataOutputStream, FileCacheImageOutputStream, FileImageOutputStream, ImageOutputStreamImpl, MemoryCacheImageOutputStream, ObjectOutputStream, RandomAccessFile
See Also:
Top Examples, Source Code, DataInput

void write(byte[] b)
           throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void write(byte[] b,
           int off,
           int len)
           throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void write(int b)
           throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void writeBoolean(boolean v)
                  throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void writeByte(int v)
               throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void writeBytes(String s)
                throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void writeChar(int v)
               throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void writeChars(String s)
                throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void writeDouble(double v)
                 throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void writeFloat(float v)
                throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void writeInt(int v)
              throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void writeLong(long v)
               throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void writeShort(int v)
                throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void writeUTF(String str)
              throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags