在我的应用程序中,图像文件列表在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 Permission。
简单来说,我的问题与这个问题有关: -
答案 0 :(得分:1)
DocumentFile documentFile = DocumentFile.fromTreeUri(this, treeUri);
这里treeUri是您从SAF权限获得的。表示您在OnActivityResult()中获得的内容。
DocumentFile fos = DocumentFile.fromFile(new File(fileIn));
在此,fileIn是您选择的文件。然后
String[] parts = (fileIn.getPath()).split("\\/");
for (int i = 3; i < parts.length; i++) {
if (documentFile != null) {
documentFile = documentFile.findFile(parts[i]);
}
}
此后获取byteArray需要使用此代码
try {
InputStream iStream = getContentResolver().openInputStream(documentFile.getUri());
byte[] byteArrayInputStream = getBytes(iStream);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
获取字节数组后,您希望继续使用代码,并在下面进行操作。
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();
}
不是:我认为这会对你有所帮助。如果您发现任何错误,请更正。感谢
答案 1 :(得分:0)
使用
保存UritakePersistableUriPermission()
绝对正确获取访问权限。在卸载或清除应用程序数据之前,将保留该权限。 下一步是保留Uri以供以后访问(即SharedPreferences)。
This会帮助你。