C# Class java.io.DataInputStream

A data input stream lets an application read primitive Java data types from an underlying input stream in a machine-independent way.
A data input stream lets an application read primitive Java data types from an underlying input stream in a machine-independent way. An application uses a data output stream to write data that can later be read by a data input stream.

DataInputStream is not necessarily safe for multithreaded access. Thread safety is optional and is the responsibility of users of methods in this class.

Inheritance: FilterInputStream, DataInput
Exibir arquivo Open project: JeroMiya/androidmono Class Usage Examples

Public Methods

Method Description
DataInputStream ( java arg0 )
read ( byte arg0 ) : int
read ( byte arg0, int arg1, int arg2 ) : int
readBoolean ( ) : bool
readByte ( ) : byte
readChar ( ) : char
readDouble ( ) : double
readFloat ( ) : float
readFully ( byte arg0 ) : void
readFully ( byte arg0, int arg1, int arg2 ) : void
readInt ( ) : int
readLine ( ) : global::java.lang.String
readLong ( ) : long
readShort ( ) : short
readUTF ( ) : global::java.lang.String
readUTF ( java arg0 ) : global::java.lang.String
readUnsignedByte ( ) : int
readUnsignedShort ( ) : int
skipBytes ( int arg0 ) : int

Protected Methods

Method Description
DataInputStream ( global @__env )

Private Methods

Method Description
DataInputStream ( )

Method Details

DataInputStream() protected method

protected DataInputStream ( global @__env )
@__env global

DataInputStream() public method

public DataInputStream ( java arg0 )
arg0 java

read() public final method

public final read ( byte arg0 ) : int
arg0 byte
return int

read() public final method

public final read ( byte arg0, int arg1, int arg2 ) : int
arg0 byte
arg1 int
arg2 int
return int

readBoolean() public method

public readBoolean ( ) : bool
return bool

readByte() public method

public readByte ( ) : byte
return byte

readChar() public method

public readChar ( ) : char
return char

readDouble() public method

public readDouble ( ) : double
return double

readFloat() public method

public readFloat ( ) : float
return float

readFully() public method

public readFully ( byte arg0 ) : void
arg0 byte
return void

readFully() public method

public readFully ( byte arg0, int arg1, int arg2 ) : void
arg0 byte
arg1 int
arg2 int
return void

readInt() public method

public readInt ( ) : int
return int

readLine() public method

public readLine ( ) : global::java.lang.String
return global::java.lang.String

readLong() public method

public readLong ( ) : long
return long

readShort() public method

public readShort ( ) : short
return short

readUTF() public method

public readUTF ( ) : global::java.lang.String
return global::java.lang.String

readUTF() public static method

public static readUTF ( java arg0 ) : global::java.lang.String
arg0 java
return global::java.lang.String

readUnsignedByte() public method

public readUnsignedByte ( ) : int
return int

readUnsignedShort() public method

public readUnsignedShort ( ) : int
return int

skipBytes() public method

public skipBytes ( int arg0 ) : int
arg0 int
return int