java files

Java append content to file using FileWriter

public class FileWriter
extends OutputStreamWriter

Convenience class for writing character files. The constructors of this class assume that the default character encoding and the default byte-buffer size are acceptable. To specify these values yourself, construct an OutputStreamWriter on a FileOutputStream.
Whether or not a file is available or may be created depends upon the underlying platform. Some platforms, in particular, allow a file to be opened for writing by only one FileWriter (or other file-writing object) at a time. In such situations the constructors in this class will fail if the file involved is already open.

FileWriter is meant for writing streams of characters. For writing streams of raw bytes, consider using a FileOutputStream.

package com.candidjava.file;

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;

public class JavaFileAppend {
  public static void main(String[] args)throws Exception {
    String data="\n This is end of the File";
    File file=new File("F:/Files/writeLine.txt");
    if(!file.exists())
    {
      file.createNewFile();
    }
    FileWriter fw=new FileWriter(file,true);
    BufferedWriter bw=new BufferedWriter(fw);
    bw.append(data);
    bw.close();
    System.out.println("Appended to file");
    
  }

}