FileProvider
你可以在这个问题中滚动你自己的。根据您要提供的文件类型和应该查看它的应用程序,您可以选择一种策略,在这个问题中对此进行了一些讨论。
例如,Word 应用程序可以很好地使用管道ParcelFileDescriptor
,对于图像,您可能需要创建文件的临时副本并提供该文件。
这是一个如何查找 Word 文件和类似文件的示例:
@Nullable
@Override
public ParcelFileDescriptor openFile(@NonNull Uri uri, @NonNull String mode) throws FileNotFoundException {
ParcelFileDescriptor[] pipe = null;
try {
pipe = ParcelFileDescriptor.createReliablePipe();
} catch (IOException e) {
Log.d(TAG, "Error creating pipe", e);
}
if (mode.contains("r")) {
FileInputStream fis = FileEncryptionWrapper.getEncryptedFileInputStream(getContext(), uri);
new PipeFeederThread(fis, new ParcelFileDescriptor.AutoCloseOutputStream(pipe[1])).start();
return pipe[0];
} else if (mode.contains("w")) {
FileOutputStream fos = FileEncryptionWrapper.getEncryptedFileOutputStream(getContext(), uri);
new PipeFeederThread(new ParcelFileDescriptor.AutoCloseInputStream(pipe[0]), fos).start();
return pipe[1];
}
return null;
}
它使用 aPipeFeederThread
将内容从您的 Stream 获取到读/写端:
static class PipeFeederThread extends Thread {
InputStream in;
OutputStream out;
PipeFeederThread(InputStream in, OutputStream out) {
this.in = in;
this.out = out;
}
@Override
public void run() {
byte[] buf = new byte[8192];
int len;
try {
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.flush();
out.close();
} catch (IOException e) {
Log.e(TAG, "PipeFeederThread: Data transfer failed:", e);
}
}
}
FileProvider
还需要在 中声明AndroidManifest.xml
:
<provider
android:name=".InternalFileProvider"
android:authorities="com.android.prototypes.encryptedimagefileprovider.InternalFileProvider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
和file_paths.xml
:
<?xml version="1.0" encoding="utf-8"?>
<paths>
<files-path name="files" path="./" />
</paths>
不幸的是,到目前为止,我还没有找到一个好的“一刀切”的解决方案,并且仍在寻找。似乎尚未以干净一致的方式解决将不同类型的加密文件导出到其他应用程序的问题。