Android FileProvider 是一種用于在應(yīng)用程序之間共享文件的機(jī)制。它允許您將文件存儲(chǔ)在安全的沙盒環(huán)境中,并通過 URI 將其提供給其他應(yīng)用程序。以下是實(shí)現(xiàn)文件共享的步驟:
<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 的授權(quán) URI,${applicationId}
是您的應(yīng)用程序 ID。android:exported
設(shè)置為 false
表示 FileProvider 不允許其他應(yīng)用程序訪問。android:grantUriPermissions
設(shè)置為 true
表示 FileProvider 可以授予其他應(yīng)用程序訪問文件的權(quán)限。
<?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
定義了一個(gè)名為 “external_files” 的外部存儲(chǔ)路徑,它指向應(yīng)用程序的外部存儲(chǔ)目錄。
File file = new File(getExternalFilesDir(null), "example.txt");
Uri fileUri = FileProvider.getUriForFile(this, getApplicationContext().getPackageName() + ".fileprovider", file);
這里,getExternalFilesDir()
方法返回應(yīng)用程序的外部存儲(chǔ)目錄,FileProvider.getUriForFile()
方法根據(jù)文件創(chuàng)建一個(gè) URI。
在將文件 URI 傳遞給其他應(yīng)用程序之前,您需要授予它們?cè)L問文件的權(quán)限??梢允褂靡韵麓a實(shí)現(xiàn):
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(fileUri, "text/plain");
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(Intent.createChooser(intent, "Open with"));
這里,Intent.FLAG_GRANT_READ_URI_PERMISSION
標(biāo)志表示授予其他應(yīng)用程序讀取文件的權(quán)限。
其他應(yīng)用程序可以使用以下代碼訪問通過 FileProvider 獲取的文件 URI:
Uri fileUri = Uri.parse("content://your.package.name.fileprovider/external_files/example.txt");
Cursor cursor = getContentResolver().query(fileUri, null, null, null, null);
if (cursor != null && cursor.moveToFirst()) {
String content = cursor.getString(cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME));
// 處理文件內(nèi)容
}
cursor.close();
這里,getContentResolver().query()
方法用于查詢文件信息,OpenableColumns.DISPLAY_NAME
表示文件的顯示名稱。