Zdravím potřeboval bych pomoct, mám kód na uložení vstupu do testového souboru ale pokaždé mi ho přepíše a já bych chtěl aby mi to do něho zapisoval pod sebe, jak to udělat? Díky.
String s = text1.getText();
FileOutputStream fop = null;
File file;
file = new File("newfile.txt");
fop = new FileOutputStream(file);
// if file doesnt exists, then create it
if (!file.exists()) {
file.createNewFile();
}
// get the content in bytes
byte[] contentInBytes = s.getBytes();
fop.write(contentInBytes);
fop.flush();
fop.close();