| new FileOutputStream ( filename, is_continue ) | ใช้สร้าง Object FileOutputStream และกำหนดด้วยว่าต้องการให้เขียนข้อมูลต่อจากข้อมูลเดิมหรือไม่ |
|---|
method:new FileOutputStream ( filename, is_continue );
return type:FileOutputStream
content:ใช้สร้าง Object FileOutputStream และกำหนดด้วยว่าต้องการให้เขียนข้อมูลต่อจากข้อมูลเดิมหรือไม่
example:String filename = new String ( "C:/bamboo.txt" ); FileOutputStream file_output_stream = new FileOutputStream ( filename, true );