Append output to file using FileOutputStream : FileOutputStream « File Input Output « Java
- Java
- File Input Output
- FileOutputStream
Append output to 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", true);
fos.write("Appended".getBytes());
fos.close();
}
}
Related examples in the same category