Запись в файл 9 Апрель 2009 by admin·0 Comments Запись в файл в Java можно сделать следующим образом: try { BufferedWriter out = new BufferedWriter( new FileWriter("outfilename")); out.write("aString"); out.close(); } catch (IOException e) { e.printStackTrace(); } other