java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
java.io.DataOutputStream
- All Implemented Interfaces:
- Closeable, DataOutput, Flushable
- See Also:
- Top Examples, Source Code,
DataInputStream
public void close()
throws IOException
- See Also:
- OutputStream
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public DataOutputStream(OutputStream out)
- See Also:
FilterOutputStream.out
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void flush()
throws IOException
- See Also:
FilterOutputStream.out
, Flushable
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
protected OutputStream out
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final int size()
- See Also:
written
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void write(byte[] b,
int off,
int len)
throws IOException
- See Also:
FilterOutputStream.out
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void write(int b)
throws IOException
- See Also:
FilterOutputStream.out
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final void writeBoolean(boolean v)
throws IOException
- See Also:
FilterOutputStream.out
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final void writeByte(int v)
throws IOException
- See Also:
FilterOutputStream.out
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final void writeBytes(String s)
throws IOException
- See Also:
FilterOutputStream.out
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final void writeChar(int v)
throws IOException
- See Also:
FilterOutputStream.out
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final void writeChars(String s)
throws IOException
- See Also:
FilterOutputStream.out
, writeChar(int)
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final void writeDouble(double v)
throws IOException
- See Also:
Double.doubleToLongBits(double)
, FilterOutputStream.out
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final void writeFloat(float v)
throws IOException
- See Also:
Float.floatToIntBits(float)
, FilterOutputStream.out
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final void writeInt(int v)
throws IOException
- See Also:
FilterOutputStream.out
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final void writeLong(long v)
throws IOException
- See Also:
FilterOutputStream.out
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final void writeShort(int v)
throws IOException
- See Also:
FilterOutputStream.out
, DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public final void writeUTF(String str)
throws IOException
- See Also:
- DataOutput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
protected int written
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples