如何在我的应用程序 Nougat 中打开 wps office?

Posted

技术标签:

【中文标题】如何在我的应用程序 Nougat 中打开 wps office?【英文标题】:How to open wps office in my application Nougat? 【发布时间】:2018-04-21 00:16:41 【问题描述】:

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

我的内部存储中有一个 Excelfile...如果未安装 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());

    


【问题讨论】:

【参考方案1】:

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

将 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>
然后在res文件夹下的xml文件夹中创建一个provider_paths.xml文件。如果文件夹不存在,可能需要创建它。 该文件的内容如下所示。它描述了我们希望共享对位于根文件夹 (path=".") 的外部存储的访问权限,名称为 external_files
<?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);

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

请参考,完整代码及解决方案已说明here.

如果您的 targetSdkVersion 为 24 或更高,you can not use file: Uri values in Intents on Android 7.0+ devices。

您的选择是:

    将您的 targetSdkVersion 降到 23 或更低,或者

    将您的内容放在内部存储中,然后use FileProvider 使其有选择地可供其他应用使用

例如:

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

i.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(i);

【讨论】:

此拍照代码...我想从我的应用程序中打开我的 excel 文件 表示你想说application/vnd.openxmlformats-officedocument.spreadsheetml.sheet instance of use this application/vnd.ms-exce 感谢您的建议..我会尝试先生任何问题我回来... 你可以看看这个***.com/a/4212908/4345934每个人都有特定的mime类型 我尝试了所有的 mime 类型,先生......它不起作用......直到 Android 6.0 它工作正常所有 mime 类型......从 Android 版本 7 它不起作用......

以上是关于如何在我的应用程序 Nougat 中打开 wps office?的主要内容,如果未能解决你的问题,请参考以下文章

通知图标在 Nougat 中显示为 Square

Google 广告 ID 在 Nougat 上返回 Null

Android nougat 状态栏在启动活动时显示白色

wps怎样关掉自动打开的我的wps

在Android Nougat中使用自签名证书通过https连接时的SSL握手异常

在 android Nougat 中使用自签名证书通过 https 连接时出现 SSL 握手异常