Run ❯
Get your
own Java
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; public class Main { public static void main(String[] args) { // true = append mode try (BufferedWriter bw = new BufferedWriter(new FileWriter("filename.txt", true))) { bw.newLine(); // move to a new line bw.write("Appended line"); // add new text at the end System.out.println("Successfully appended to the file."); } catch (IOException e) { System.out.println("Error writing file."); } } }
Successfully appended to the file.