All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class org.jos.java.io.DataOutputStream

java.lang.Object
    |
    +----org.jos.java.io.FilterOutputStream
            |
            +----org.jos.java.io.DataOutputStream

public class DataOutputStream
extends FilterOutputStream
implements DataOutput
JOS replacement of a standard Java IO class.

based on kore-0.0.7 by Glynn Clements

Version:
JOS-FileSystem 4 Preview (25-Mar-98)
Author:
Glynn Clements
Author:
Stefan Reich

Constructor Index

 o DataOutputStream(OutputStream)

Method Index

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

Constructors

 o DataOutputStream
public DataOutputStream(OutputStream out)

Methods

 o flush
public void flush() throws IOException
Overrides:
flush in class FilterOutputStream
 o size
public final int size()
 o write
public void write(int b) throws IOException
Overrides:
write in class FilterOutputStream
 o write
public void write(byte[] b,
                  int off,
                  int len) throws IOException
Overrides:
write in class FilterOutputStream
 o writeBoolean
public final void writeBoolean(boolean v) throws IOException
 o writeByte
public final void writeByte(int v) throws IOException
 o writeChar
public final void writeChar(int v) throws IOException
 o writeShort
public final void writeShort(int v) throws IOException
 o writeInt
public final void writeInt(int v) throws IOException
 o writeLong
public final void writeLong(long v) throws IOException
 o writeFloat
public final void writeFloat(float v) throws IOException
 o writeDouble
public final void writeDouble(double v) throws IOException
 o writeBytes
public final void writeBytes(String s) throws IOException
 o writeChars
public final void writeChars(String s) throws IOException
 o writeUTF
public final void writeUTF(String s) throws IOException

All Packages  Class Hierarchy  This Package  Previous  Next  Index