1

我尝试了下面的代码,它可以在 Marshmallow 中运行,它在 Nougat 中不起作用..任何人都可以帮我解决这个问题...

我的内部存储中有一个Excel 文件...如果未安装 wps,我将在单击按钮时打开 excelfile 我被重定向到Playstore以安装 wps...

我收到如下错误:

android.os.FileUriExposedException: file:///storage/emulated/0/Test%20Distributor%20Report.xlsx 通过 Intent.getData() 暴露在应用程序之外

void openExcel()
{

    Intent intent = new Intent(Intent.ACTION_VIEW);
    /*vnd.ms-excel*/  /*application/vnd.openxmlformats-officedocument.spreadsheetml.sheet*/
    intent.setDataAndType(Uri.fromFile(file),"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");

    try {
        context.startActivity(intent);
    }catch (Exception e)
    {
        Toast.makeText(context,"Please Install WPS  Application To View Reports",Toast.LENGTH_LONG).show();

        Intent viewIntent =
                new Intent("android.intent.action.VIEW",
                        Uri.parse("https://play.google.com/store/apps/details?id=cn.wps.moffice_eng&hl=en"));
        context.startActivity(viewIntent);

        Log.d("printexeption",""+e.toString());

    }

}
4

1 回答 1

1

如果您的 targetSdkVersion 为 24 或更高,我们必须使用FileProvider类来授予对特定文件或文件夹的访问权限,以便其他应用程序可以访问它们。我们创建自己的继承类FileProvider,以确保我们的 FileProvider 不会与在导入依赖项中声明的 FileProvider 冲突,如此处所述

将 file:// uri 替换为 content:// uri 的步骤:

  • 添加一个扩展 FileProvider 的类

    public class GenericFileProvider extends FileProvider {
    
    }
    
  • 在标记下的 AndroidManifest.xml 中添加 FileProvider 标记。为属性指定唯一权限android:authorities以避免冲突,导入的依赖项可能会指定${applicationId}.provider其他常用权限。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    ...
    <application
        ...
        <provider
            android:name=".GenericFileProvider"
            android:authorities="${applicationId}.my.package.name.provider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_paths"/>
        </provider>
    </application>
</manifest>
  • 然后在文件夹下的文件夹中创建一个provider_paths.xml文件。如果文件夹不存在,可能需要创建它。该文件的内容如下所示。它描述了我们希望在根文件夹中共享对名为external_files的外部存储的访问。xmlres(path=".")
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="external_files" path="."/>
</paths>
  • 最后一步是更改下面的代码行

    使用下面提到的代码打开 excel 文件:

    File file = new File(Environment.getExternalStorageDirectory()+ "/filepath/" + filename);
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setDataAndType(Uri.fromFile(file),"application/vnd.ms-excel");
    startActivity(intent);
    
  • 编辑:如果使用意图使系统打开您的文件,您可能需要添加以下代码行:

    intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    

希望这会有所帮助... :)

请参考,这里已经解释了完整的代码和解决方案

如果您targetSdkVersion是 24 或更高,则不能在 Android 7.0+ 设备上使用file: UriIntents

您的选择是:

  1. 将您的分数targetSdkVersion降至 23 或更低,或

  2. 将您的内容放在内部存储中,然后用于FileProvider有选择地提供给其他应用程序

例如:

Intent i=new Intent(Intent.ACTION_VIEW, FileProvider.getUriForFile(this, AUTHORITY, f));

i.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(i);
于 2017-11-08T10:43:21.207 回答