Write file using FileOutputStream : FileOutputStream « File Input Output « Java
- Java
- File Input Output
- FileOutputStream
Write file using FileOutputStream
import java.io.FileOutputStream;
public class Main {
public static void main(String[] args) throws Exception {
FileOutputStream fos = new FileOutputStream("C:/demo.txt");
byte b = 01;
fos.write(b);
fos.close();
}
}
Related examples in the same category