我正在通过我的应用访问设备图库的图片,当访问图片时,图片的元数据将被读取并存储在metadata
中。我面临的问题是,每当程序试图阅读元数据时,我都会收到以下错误java.io.FileNotFoundException: /storage/emulated/0/Snapchat/Snapchat-1185425082.jpg (Permission denied)
。
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data){
super.onActivityResult(requestCode, resultCode, data);
if(resultCode == RESULT_OK && requestCode == PICK_IMAGE){
imageUri = data.getData();
imageView.setImageURI(imageUri);
File picturesfile = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
picturesfile.setReadable(true);
picturesfile.setExecutable(true);
String[] projection = {MediaStore.Images.Media.DATA};
try {
Cursor cursor = getContentResolver().query(imageUri, projection, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(projection[0]);
path = cursor.getString(columnIndex);
Log.d("Picture Path", path);
}
catch(Exception e) {
Log.e("Path Error", e.toString());
}
File jpegFile = new File(path);
jpegFile.setReadable(true);
jpegFile.setExecutable(true);
try {
metadata = ImageMetadataReader.readMetadata(jpegFile);
for (Directory directory : metadata.getDirectories()) {
for (Tag hoi : directory.getTags()) {
Log.d("tags ", hoi.toString());
}
}
} catch (ImageProcessingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
if(resultCode == RESULT_OK && requestCode == 0){
Bitmap bitmap = (Bitmap)data.getExtras().get("data");
imageView.setImageBitmap(bitmap);
}
}
在战术上,您似乎没有READ_EXTERNAL_STORAGE
许可,您需要在清单和运行时请求。
除此之外:
-
无需您的
query()
返回DATA
列 -
不需要
DATA
列有一个值 -
不需要
DATA
列有文件系统路径 -
即使使用
READ_EXTERNAL_STORAGE
,
DATA
列中的文件系统路径也不需要您可以访问的文件特别是,可以保证您的代码在Android Q上会失败,并且对于许多其他设备上的许多用户也很可能会失败。
使用Uri
(imageUri
(使用ContentResolver
获取InputStream
(或FileDescriptor
(以传递到您的库。