android.os.FileUriExposedException: file:///storage/emulated/0/DCIM/USBCheck/20230529/pdf/2023-05-29-15-05-06.pdf exposed beyond app through ClipData.Item.getUri()
时间: 2023-06-29 11:20:48 浏览: 196
这个问题通常是由于应用程序试图访问外部存储设备中的文件而导致的。在Android 7.0及以上的版本中,应用程序必须使用FileProvider API来共享文件,并且不能直接访问外部存储设备中的文件。这是为了提高应用程序的安全性,以防止应用程序泄露用户数据。
要解决这个问题,你需要使用FileProvider API来共享文件。首先,在你的应用程序的Manifest文件中添加一个FileProvider的声明。然后,在代码中使用FileProvider.getUriForFile()方法来获取文件的URI。最后,将URI添加到ClipData.Item中,并使用Intent.createChooser()方法启动活动。
以下是一个示例代码:
在Manifest文件中添加FileProvider声明:
```
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
```
在res/xml目录下创建一个名为file_paths.xml的文件,文件内容如下:
```
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="." />
</paths>
```
在代码中使用FileProvider.getUriForFile()方法获取文件URI:
```
File file = new File(Environment.getExternalStorageDirectory() + "/DCIM/USBCheck/20230529/pdf/2023-05-29-15-05-06.pdf");
Uri uri = FileProvider.getUriForFile(this, BuildConfig.APPLICATION_ID + ".provider", file);
```
将URI添加到ClipData.Item中,并使用Intent.createChooser()方法启动活动:
```
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("application/pdf");
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(shareIntent, "Share PDF using"));
```
这样就可以在应用程序中共享文件,并且不会遇到FileUriExposedException的问题。
阅读全文