Here you can find the source of appendToFile(File file, String data)
public static void appendToFile(File file, String data) throws Exception
//package com.java2s; //License from project: Open Source License import java.io.*; public class Main { public static void appendToFile(File file, String data) throws Exception { FileWriter fw = new FileWriter(file, true); fw.write(data);/* w w w . j av a 2s. co m*/ fw.close(); } }