我花了好几个小时试图弄清楚我的问题,但我似乎无法找出解决方案。
我正在尝试删除当我试图获取它时保存的图像。图像放在内部存储器中。 我的代码是:
Uri imageUri = getImageUri(this, selectedImage);
File file = new File(imageUri.getPath());
if (!file.exists()) {
Log.i(TAG, "nope");
else{
file.delete();
}
}
public Uri getImageUri(Context Context, Bitmap image) {
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
image.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
String path = MediaStore.Images.Media.insertImage(Context.getContentResolver(), image, "Title", null);
Log.i(TAG, path);
return Uri.parse(path);
}
然而,尽管我刚刚创建了图像uri,但file.exists()仍然返回false。为什么会这样?
更新
感谢Shinil M S,我找到了解决问题的方法。但是我还有一个问题,即每当我删除照片时,图像都被另一个空图像替换。我附上了这张照片,因为我不确定它到底是什么。如何完全摆脱它,使图像根本不显示? Image mentioned above
更新2
我已经按照预期工作了。
我的代码是:
public static void deleteUri(Context context, Uri uri){
long mediaId = ContentUris.parseId(uri);
Uri contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
Uri itemUri = ContentUris.withAppendedId(contentUri, mediaId);
context.getContentResolver().delete(itemUri, null, null);
}
我使用了这个人的解决方案:Deleting files via a 'ContentResolver' as opposed to deleting them via 'file.delete()'
答案 0 :(得分:0)
试试这个,
Uri imageUri = getImageUri(this, selectedImage);
String[] filePathColumn = {MediaStore.Images.Media.DATA};
Cursor cursor = context.getContentResolver().query(imageUri, filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String filePath = cursor.getString(columnIndex);
cursor.close();
File file = new File(filePath);
if (!file.exists())
Log.i(TAG, "nope");
else
file.delete();