All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class org.jos.java.io.DataInputStream

java.lang.Object
    |
    +----org.jos.java.io.InputStream
            |
            +----org.jos.java.io.FilterInputStream
                    |
                    +----org.jos.java.io.DataInputStream

public class DataInputStream
extends FilterInputStream
implements DataInput
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 DataInputStream(InputStream)

Method Index

 o read(byte[])
 o read(byte[], int, int)
 o readBoolean()
 o readByte()
 o readChar()
 o readDouble()
 o readFloat()
 o readFully(byte[])
 o readFully(byte[], int, int)
 o readInt()
 o readLine()
 o readLong()
 o readShort()
 o readUnsignedByte()
 o readUnsignedShort()
 o readUTF()
 o readUTF(DataInput)
 o skipBytes(int)

Constructors

 o DataInputStream
public DataInputStream(InputStream in)

Methods

 o readUTF
public static final String readUTF(DataInput in) throws IOException
 o read
public final int read(byte[] b) throws IOException
Overrides:
read in class FilterInputStream
 o read
public final int read(byte[] b,
                      int off,
                      int len) throws IOException
Overrides:
read in class FilterInputStream
 o readFully
public final void readFully(byte[] b) throws IOException
 o readFully
public final void readFully(byte[] b,
                            int off,
                            int len) throws IOException
 o readBoolean
public final boolean readBoolean() throws IOException
 o readByte
public final byte readByte() throws IOException
 o readUnsignedByte
public final int readUnsignedByte() throws IOException
 o readChar
public final char readChar() throws IOException
 o readShort
public final short readShort() throws IOException
 o readUnsignedShort
public final int readUnsignedShort() throws IOException
 o readInt
public final int readInt() throws IOException
 o readLong
public final long readLong() throws IOException
 o readFloat
public final float readFloat() throws IOException
 o readDouble
public final double readDouble() throws IOException
 o readLine
public final String readLine() throws IOException
 o readUTF
public final String readUTF() throws IOException
 o skipBytes
public final int skipBytes(int n) throws IOException

All Packages  Class Hierarchy  This Package  Previous  Next  Index