Android FileProvider 是一种用于在应用程序之间共享文件的机制,它可以帮助确保文件的安全性和隐私性。为了确保文件权限,你可以遵循以下步骤:
<manifest ...>
<application ...>
...
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
</manifest>
这里,android:authorities
是 FileProvider 的授权 URI,android:exported
设置为 false
表示 FileProvider 不对外部应用程序开放,android:grantUriPermissions
设置为 true
表示允许外部应用程序访问文件 URI。
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="." />
</paths>
这里,external-path
定义了一个名为 “external_files” 的目录,它指向应用程序的外部存储空间。
File file = new File(getExternalFilesDir(null), "example.txt");
Uri fileUri = FileProvider.getUriForFile(this, getApplicationContext().getPackageName() + ".fileprovider", file);
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_STREAM, fileUri);
startActivity(Intent.createChooser(shareIntent, "Share file"));
Uri receivedFileUri = ...; // 从 Intent 中获取文件 URI
File receivedFile = new File(getContext().getCacheDir(), "received_file.txt");
try {
InputStream inputStream = getContentResolver().openInputStream(receivedFileUri);
FileOutputStream outputStream = new FileOutputStream(receivedFile);
byte[] buffer = new byte[inputStream.available()];
inputStream.read(buffer);
outputStream.write(buffer);
inputStream.close();
outputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
通过以上步骤,你可以确保在使用 Android FileProvider 时,文件的安全性和隐私性得到保护。