FileUriExposedException: file:///storage/emulated/0/Acquisition/storage exposed beyond app through Intent.getData()
时间: 2023-11-19 16:53:45 浏览: 289
FileUriExposedException是Android N(7.0)及以上版本中的一个安全特性,它会在你的应用程序中使用file:// URI时抛出异常。这是因为在Android N中,应用程序之间的访问权限更加严格,如果你使用file:// URI来共享文件,那么你的应用程序将会抛出FileUriExposedException异常。为了解决这个问题,你需要使用FileProvider来共享文件。FileProvider是一个特殊的ContentProvider,它允许你共享文件和私有目录,同时保护你的应用程序不受其他应用程序的攻击。
相关问题
android.os.FileUriExposedException: file:///storage/emulated/0/temp.png exposed beyond app through Intent.getData()
这个问题通常出现在 Android 7.0 及以上版本中,是由于 Android 7.0 引入了一项安全机制,禁止应用使用 file:// URI 访问其他应用或用户的文件。解决此问题的方法是使用 FileProvider 来共享文件。您可以按照以下步骤解决此问题:
1. 在 Manifest 文件中添加一个 FileProvider:
```
<application>
...
<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/provider_paths"/>
</provider>
...
</application>
```
2. 在 res/xml 文件夹中创建一个 provider_paths.xml 文件,指定要共享的文件路径:
```
<paths>
<external-path name="external_files" path="."/>
</paths>
```
3. 在代码中使用 FileProvider 获取文件的 URI:
```
File file = new File(getExternalFilesDir(null), "temp.png");
Uri uri = FileProvider.getUriForFile(this, BuildConfig.APPLICATION_ID + ".provider", file);
```
4. 在 Intent 中使用获取到的 URI:
```
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(uri, "image/*");
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent);
```
这样就可以避免出现文件 URI 暴露的问题。
android.os.FileUriExposedException: file://orage/emulated/0/temp.png exposed beyond app through ClipData.Item.getUri()
这个异常是由于在 Android 7.0 及以上版本中,系统引入了 FileProvider 来限制应用访问外部存储的安全性问题。如果你的应用需要共享文件,则必须使用 FileProvider 来共享文件。
你可以尝试以下解决方法:
1. 在 AndroidManifest.xml 文件中添加一个 FileProvider 的声明。
```xml
<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>
```
2. 创建一个名为 file_paths.xml 的文件,并将其放置在 res/xml/ 目录下
```xml
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>
```
3. 在你的代码中,使用 FileProvider.getUriForFile() 方法来获取 Content URI:
```java
File file = new File("/orage/emulated/0/temp.png");
Uri uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".fileprovider", file);
```
4. 最后,将 Content URI 放入 Intent 中:
```java
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/png");
intent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(intent, "Share Image"));
```
这样就可以避免 FileUriExposedException 异常了。
阅读全文