回答編集履歴
1
finalつけ忘れ
answer
CHANGED
@@ -11,5 +11,5 @@
|
|
11
11
|
|
12
12
|
final File file = new File(filePath);
|
13
13
|
|
14
|
-
FileOutputStream fileOutputstream = openFileOutput(file.getCanonicalPath(), Context.MODE_APPEND);
|
14
|
+
final FileOutputStream fileOutputstream = openFileOutput(file.getCanonicalPath(), Context.MODE_APPEND);
|
15
15
|
```
|