C# 클래스 cadencii.java.io.RandomAccessFile

상속: InputStream
파일 보기 프로젝트 열기: cadencii/cadencii 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

RandomAccessFile() 공개 메소드

public RandomAccessFile ( String name, String mode ) : System
name String
mode String
리턴 System

close() 공개 메소드

public close ( ) : void
리턴 void

getFilePointer() 공개 메소드

public getFilePointer ( ) : long
리턴 long

length() 공개 메소드

public length ( ) : long
리턴 long

read() 공개 메소드

public read ( ) : int
리턴 int

read() 공개 메소드

public read ( byte b ) : int
b byte
리턴 int

read() 공개 메소드

public read ( byte b, int off, int len ) : int
b byte
off int
len int
리턴 int

seek() 공개 메소드

public seek ( long pos ) : void
pos long
리턴 void

write() 공개 메소드

public write ( byte b ) : void
b byte
리턴 void

write() 공개 메소드

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

write() 공개 메소드

public write ( int b ) : void
b int
리턴 void

writeByte() 공개 메소드

public writeByte ( int b ) : void
b int
리턴 void