从库中读取位图并将其写入SD卡失败

时间:2016-11-13 19:25:47

标签: android bitmap android-sdcard android-gallery android-external-storage

我想将库中的位图复制到SD卡上的路径。

此功能适用于从相机拍摄的照片:

public void saveBitmap(Bitmap bitMap, Uri avatarUri) throws Exception{
        File file = new File(avatarUri.toString());
//        if (file.exists ()) file.delete ();
        try {
            OutputStream fOut = new FileOutputStream(file);
            if (bitMap.compress(Bitmap.CompressFormat.PNG, 100, fOut)) {
                fOut.flush();
                fOut.close();
            } else {
                Log.d("123", "compress file");
            }
        } catch (Exception e) {
            Log.d("123", "File not found file");
        }
}

但是当我使用以下选项从图库中选择图像时:

void getImageFromGallery(Intent data) throws FileNotFoundException {
        Uri selectedImage = data.getData();
        String[] filePathColumn = { MediaStore.Images.Media.DATA };
        Cursor cursor = context.getContentResolver().query(selectedImage,
                filePathColumn, null, null, null);
        cursor.moveToFirst();
        int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
        String picturePath = cursor.getString(columnIndex);
        cursor.close();
        Bitmap bitmap = BitmapFactory.decodeFile(picturePath);
        avatarBitmap = bitmap;
    }

使用saveBitmap()方法保存此选择的图像,它会捕获File not found例外。
此方法生成一个文件夹并返回saveBitmap()方法的URI。

 public Uri generateAvatarImageUri(String patientName) {
        Date date = new Date(0);
        SimpleDateFormat sdf = new SimpleDateFormat ("yyyyMMddHHmmss");
        String filename =  sdf.format(date) + patientName;
        return Uri.fromFile(new File(getExternalStorageDirectory(), avatarFolderPath+filename+".jpg"));
    }
}

任何帮助?

1 个答案:

答案 0 :(得分:1)

最后我得到了原因,这是因为文件路径问题。

这是我用的:

Uri uri = ....;
path = uri.toString();

这导致前缀 file:/// 被添加到路径字符串中,如:

file:///storage/...png
希望可以帮助其他人。