117118119120121122123124125126127
try{ fileWriter = new BufferedWriter(new FileWriter(file, true)); fileWriter.write(data); fileWriter.flush(); } catch (IOException e){ throw new FileWriteException(String.format(ExceptionString.FILEWRITEEXCEPTION.getExceptionString(), file.getAbsolutePath())); } try{ fileWriter.close(); } catch(IOException e) { //nothing to do...