到外部存儲器中的圖像我用下面的代碼將圖像寫入到外部存儲在機器人:寫在android系統
File root = android.os.Environment.getExternalStorageDirectory();
File dir = new File (root.getAbsolutePath() + "/download");
dir.mkdirs();
fileName = "image_2.jpeg";
File file = new File(dir, fileName);
try {
FileOutputStream outStream = new FileOutputStream(file);
Bitmap bitmap = BitmapFactory.decodeFile("android.resource://com.mypackage.com/drawable/image_1");
bitmap.compress(Bitmap.CompressFormat.JPEG, 70, outStream);
outStream.flush();
outStream.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
此代碼是從繪製文件夾閱讀image_1.jpg,然後寫它下載文件夾在外部存儲中,使用image_2.jpeg名稱。 (在外部存儲器中創建下載文件夾,並在該文件夾內創建一個名稱爲image_2.jpeg的文件)。 這段代碼將產生一個((強制關閉))。下載文件夾被創建並且image_2.jpeg被創建,但是圖像image_2.jpeg被損壞。
「這個代碼將產生((強制關閉))」 - 使用logcat的檢查Java堆棧跟蹤與您的崩潰相關聯。另外,請不要使用隨機目錄混亂用戶的外部存儲。在'Context'上使用'Environment.getExternalStoragePublicDirectory()'或'getExternalFilesDir()'來獲得文件更明智的地方。 – CommonsWare