「abc.txt」ファイルを作成してデータを保存しています。SDカードに保存されているデータがどこにあるかを知るにはどうすればよいですか?Android携帯を持っていません
try {
FileOutputStream fos = openFileOutput("abc.txt",MODE_PRIVATE);
String s = "Data to be written ok fine cool";fos.write(s.getBytes());
} catch (Exception e) {
e.printStackTrace();
}
そのファイルを添付してバックグラウンドでメールとして送信できるようにしたい