Store Bitmap image to SD Card in Android
问题 I am facing some strange problem with my android code, I have an image in Bitmap variable and want to save that file to SD card. I code as follow, Bitmap IMAGE // Loaded from internet servers.; try { File _sdCard = Environment.getExternalStorageDirectory(); File _picDir = new File(_sdCard, "MyDirectory"); _picDir.mkdirs(); File _picFile = new File(_picDir, "MyImage.jpg"); FileOutputStream _fos = new FileOutputStream(_picFile); IMAGE.compress(Bitmap.CompressFormat.JPEG, 100, _fos); _fos.flush(