FileOutputStream In Java Example
Chapter:
Java I/O
Last Updated:
21-07-2016 18:16:45 UTC
Program:
/* ............... START ............... */
import java.io.FileOutputStream;
public class JavaFileOutputStream {
public static void main(String[] args) {
String content = "Welcome To JavaScan.com";
byte[] bytes = content.getBytes();
try {
FileOutputStream fos = new FileOutputStream("JavafileExample.txt");
fos.write(bytes);
fos.close();
} catch (Exception ex) {
System.out.println(ex.getMessage());
}
}
}
/* ............... END ............... */
Notes:
-
The Java.io.FileOutputStream class is an output stream for writing data to a File or to a FileDescriptor.
- FileOutputStream(File file) - creates a file output stream to write to the file represented by the specified File object.
Tags
FileOutputStream , Java, Java I/O