C# Class cadencii.java.io.FileOutputStream

Inheritance: System.IO.FileStream, OutputStream
Show file Open project: cadencii/cadencii Class Usage Examples

Public Methods

Method Description
FileOutputStream ( String fileName ) : System
FileOutputStream ( String fileName, bool append ) : System
close ( ) : void
flush ( ) : void

出力ストリームをフラッシュして、バッファリングされていたすべての出力バイトを強制的にストリームに書き込みます。

write ( byte b ) : void

b.length バイトのデータを出力ストリームに書き込みます。

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

指定された byte 配列の、オフセット位置 off から始まる len バイトを出力ストリームに書き込みます。

write ( int b ) : void

指定された byte を出力ストリームに書き込みます。

Method Details

FileOutputStream() public method

public FileOutputStream ( String fileName ) : System
fileName String
return System

FileOutputStream() public method

public FileOutputStream ( String fileName, bool append ) : System
fileName String
append bool
return System

close() public method

public close ( ) : void
return void

flush() public method

出力ストリームをフラッシュして、バッファリングされていたすべての出力バイトを強制的にストリームに書き込みます。
public flush ( ) : void
return void

write() public method

b.length バイトのデータを出力ストリームに書き込みます。
public write ( byte b ) : void
b byte
return void

write() public method

指定された byte 配列の、オフセット位置 off から始まる len バイトを出力ストリームに書き込みます。
public write ( byte b, int off, int len ) : void
b byte
off int
len int
return void

write() public method

指定された byte を出力ストリームに書き込みます。
public write ( int b ) : void
b int
return void