まず、似たような投稿がありましたら申し訳ありませんが、理解できませんでした。
Androidでファイルを書き込もうとしていますが、次のコードを取得しました:
String FILENAME = "hello_file.txt";
String string = "hello world!";
FileOutputStream fos;
try {
fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(string.getBytes());
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
Log.d("Angles", "FileNotFoundException");
}catch(IOException e){
e.printStackTrace();
Log.d("Angles", "IOException");
}
例外は発生しないので動作すると思いますが、デバイス内で hello_file.txt ファイルを見つけることができません。
Galaxy Nexus で実行しています。SDなし。