C# Class cadencii.java.io.RandomAccessFile

Inheritance: InputStream
Afficher le fichier Open project: cadencii/cadencii Class Usage Examples

Méthodes publiques

Méthode 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 méthode

public RandomAccessFile ( String name, String mode ) : System
name String
mode String
Résultat System

close() public méthode

public close ( ) : void
Résultat void

getFilePointer() public méthode

public getFilePointer ( ) : long
Résultat long

length() public méthode

public length ( ) : long
Résultat long

read() public méthode

public read ( ) : int
Résultat int

read() public méthode

public read ( byte b ) : int
b byte
Résultat int

read() public méthode

public read ( byte b, int off, int len ) : int
b byte
off int
len int
Résultat int

seek() public méthode

public seek ( long pos ) : void
pos long
Résultat void

write() public méthode

public write ( byte b ) : void
b byte
Résultat void

write() public méthode

public write ( byte b, int off, int len ) : void
b byte
off int
len int
Résultat void

write() public méthode

public write ( int b ) : void
b int
Résultat void

writeByte() public méthode

public writeByte ( int b ) : void
b int
Résultat void