Ciao a tutti.
Con questo codice scrivo la parola Ciao su un file testo.txt
File testo = new File("c:\\testo.txt");
FileOutputStream fos = new FileOutputStream(testo);
PrintStream fout = new PrintStream(fos);
fout.println("Ciao");
fout.close();
Ora come faccio ad aggiungere altro testo a quello presente?