回答編集履歴
1
リンク追加
test
CHANGED
@@ -1,3 +1,5 @@
|
|
1
1
|
>new FileOutputStream(file, true);
|
2
2
|
|
3
|
+
[FileOutputStream(File file, boolean append)](https://developer.android.com/reference/java/io/FileOutputStream#FileOutputStream(java.io.File,%20boolean))
|
4
|
+
|
3
5
|
第2引数は append で、 true の場合は既存のファイルに追記することになりますが、それで良いのでしょうか。
|