0
内の既存のデータを失うことなく、私はデータを追加する方法は?ファイル
try {
DataOutputStream out = c.openDataOutputStream();
String text = file + " | " + tag + " | " + report + " \n ";
out.write(text.getBytes());
out.close();
} catch (Exception e) {
System.out.println("IOException OutputStream: "+e.getMessage());
}`
を使用しますが、それは、ファイル内のすべての既存のデータを削除します。