C# Class cadencii.java.io.RandomAccessFile

Inheritance: InputStream
Mostrar archivo Open project: cadencii/cadencii Class Usage Examples

Public Methods

Method Description
RandomAccessFile ( String name, String mode ) : System
close ( ) : void
getFilePointer ( ) : long
length ( ) : long
read ( ) : int
read ( byte b ) : int
read ( byte b, int off, int len ) : int
seek ( long pos ) : void
write ( byte b ) : void
write ( byte b, int off, int len ) : void
write ( int b ) : void
writeByte ( int b ) : void

Method Details

RandomAccessFile() public method

public RandomAccessFile ( String name, String mode ) : System
name String
mode String
return System

close() public method

public close ( ) : void
return void

getFilePointer() public method

public getFilePointer ( ) : long
return long

length() public method

public length ( ) : long
return long

read() public method

public read ( ) : int
return int

read() public method

public read ( byte b ) : int
b byte
return int

read() public method

public read ( byte b, int off, int len ) : int
b byte
off int
len int
return int

seek() public method

public seek ( long pos ) : void
pos long
return void

write() public method

public write ( byte b ) : void
b byte
return void

write() public method

public write ( byte b, int off, int len ) : void
b byte
off int
len int
return void

write() public method

public write ( int b ) : void
b int
return void

writeByte() public method

public writeByte ( int b ) : void
b int
return void