1
我已經搜索並嘗試了一切,我在Google和StackOverflow上發現了關於此主題的所有內容,但是我沒有找到使其工作。 我有這個代碼,但它引發了我一個致命的例外。 我認爲,因爲我是Android新手,所以我做錯了一些事情。請幫助我^^Android - 在外部存儲器上使用其URL保存圖片
public void svgPhoto() throws IOException {
String dir = Environment.getExternalStorageDirectory().toString();
OutputStream fos = null;
File file = new File(dir,"downloadImage.JPEG");
Bitmap bm =BitmapFactory.decodeFile("http://perlbal.hi-pi.com/blog-images/3278/gd/1242316719/Chat-chat.jpg");
fos = new FileOutputStream(file);
BufferedOutputStream bos = new BufferedOutputStream(fos);
bm.compress(Bitmap.CompressFormat.JPEG, 50, bos);
bos.flush();
bos.close();
確保您有'WRITE_EXTERNAL_STORAGE'許可,您的AndroidManifest.xml – 2013-02-28 14:26:00