Добрый день! Мне нужна помощь относительно того, как добавить текст в существующий текстовый файл сохранения. Вот мой код
try {
File myFile = new File("/sdcard/mysdfile.txt");
FileOutputStream fOut = new FileOutputStream(myFile);
OutputStreamWriter myOutWriter = new OutputStreamWriter(fOut);
BufferedWriter bwriter = new BufferedWriter(myOutWriter);
// write the contents to the file
String str = textLatLong.getText().toString();
myOutWriter.append(textLatLong.getText());
bwriter.write(str);
bwriter.newLine();
myOutWriter.close();
fOut.close();
Toast.makeText(getBaseContext(),
"Done writing saved to 'mydirectory.txt'",
Toast.LENGTH_SHORT).show();
} catch (Exception e) {
Toast.makeText(getBaseContext(), e.getMessage(),
Toast.LENGTH_SHORT).show();
. Редактировать текст будет сохранен в существующий текстовый файл, и он будет добавлен к существующему тексту, но в новой строке.
TIA.