Easy Tutorial
❮ File Date Method Instanceof ❯

Java Example - Appending Data to a File

Java Examples

The following example demonstrates how to append data to a file using the FileWriter method:

Main.java File

import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        try {
            BufferedWriter out = new BufferedWriter(new FileWriter("filename"));
            out.write("aString1\n");
            out.close();
            out = new BufferedWriter(new FileWriter("filename", true));
            out.write("aString2");
            out.close();
            BufferedReader in = new BufferedReader(new FileReader("filename"));
            String str;
            while ((str = in.readLine()) != null) {
                System.out.println(str);
            }
            in.close();
        } catch (IOException e) {
            System.out.println("exception occurred" + e);
        }
    }
}

The output of the above code is:

aString1
aString2

Java Examples

❮ File Date Method Instanceof ❯