在我的应用程序中,图像文件列表在 recyclerview 中被夸大了。然后在应用程序编辑图像文件的元数据之后。
我编写元数据的代码:-
DocumentFile fos = DocumentFile.fromFile(new File(fileIn));
ByteSource bytsInputStream = new ByteSourceFile(new File(fileIn));
byte[] byteArrayInputStream = bytsInputStream.getAll();
try {
ParcelFileDescriptor pfd = context.getContentResolver().
openFileDescriptor(fos.getUri(), "w");
FileOutputStream fileOutputStream =
new FileOutputStream(pfd.getFileDescriptor());
rewriter.updateExifMetadataLossy(byteArrayInputStream,fileOutputStream,outputSet);
fileOutputStream.close();
pfd.close();
}
catch (Exception e){e.printStackTrace();}
我可以更新存储在手机内存中的图像文件,但是对于 SD 卡图像,我得到错误 ---->
java.io.FileNotFoundException: Permission denied
我知道从 android 5 开始,我们需要使用 SAF 获得许可。我获得许可的代码:-
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE);
intent.addFlags(
Intent.FLAG_GRANT_READ_URI_PERMISSION
| Intent.FLAG_GRANT_WRITE_URI_PERMISSION
| Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION);
startActivityForResult(intent, REQUEST_CODE_OPEN_DOCUMENT_TREE);
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case REQUEST_CODE_OPEN_DOCUMENT_TREE:
if (resultCode == Activity.RESULT_OK) {
Uri treeUri = data.getData();
int takeFlags = data.getFlags();
takeFlags &= (Intent.FLAG_GRANT_READ_URI_PERMISSION |
Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
this.getContentResolver().takePersistableUriPermission(treeUri, takeFlags);
}
}
}
现在我不知道如何处理这个 treeUri。我希望我只在初始启动时获得一次 SdCard 权限。
简单来说,我的问题与这个问题有关:-