ビットマップを Pictures ディレクトリに保存しようとしています。これがコードです
File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
File file = new File(path, "test1.PNG");
try {
path.mkdirs();
OutputStream out = new FileOutputStream(file);
mBitmap.compress(Bitmap.CompressFormat.PNG, 90, out);
out.flush();
out.close();
} catch (Exception e) {
e.printStackTrace();
Log.w("ExternalStorage", "Error writing " + file, e);
}
OutputStream out = new FileOutputStream(file);
しかし、 I used the debugger and the full path returnsmnt/sdcard/Pictures/test1.PNG
で実行がスタックしました。mnt/
なぜ私が通り抜けられなかったのOutputStream out = new FileOutputStream(file);
ですか? sdcard/
ファイルディレクトリでしか見ることができないからです。
ありがとう!