class FileHandler { public void writeFile() throws IOException { FileWriter fw = new FileWriter("adat.txt", true); fw.write("bármi\n"); fw.close(); } }