Android 打开 Word 文件提示程序异常,如何排查解决?

ID:17376 / 打印

android 打开 word 文件提示程序异常,如何排查解决?

安卓打开 word 文件提示程序异常

当使用 intent 尝试打开 word 文件时,程序却自动关闭,提示异常。

问题排查及解决步骤

1. 检查文件路径权限

确保应用程序已授予读取外部存储的权限,可以通过在 androidmanifest.xml 中添加如下权限并请求运行时权限来实现:

<uses-permission android:name="android.permission.read_external_storage" />
if (contextcompat.checkselfpermission(this, manifest.permission.read_external_storage)         != packagemanager.permission_granted) {     activitycompat.requestpermissions(this, new string[]{manifest.permission.read_external_storage}, 1); }

2. 构建打开 word 文件的 intent

使用方法不正确或 mime 类型设置错误会导致程序崩溃。使用以下代码正确构建打开 word 文档的 intent:

public intent getwordfileintent(string filepath) {     file file = new file(filepath);     uri fileuri;          if (build.version.sdk_int >= build.version_codes.n) {         fileuri = fileprovider.geturiforfile(this, getpackagename() + ".fileprovider", file);     } else {         fileuri = uri.fromfile(file);     }          intent intent = new intent(intent.action_view);     intent.setdataandtype(fileuri, "application/msword");     intent.addflags(intent.flag_grant_read_uri_permission);     return intent; }

3. 设置 fileprovider

对于 android 7.0 及更高版本,需要使用 fileprovider 安全地共享文件 uri。在 androidmanifest.xml 中添加:

<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>

创建 res/xml/file_paths.xml 文件,内容如下:

<paths xmlns:android="http://schemas.android.com/apk/res/android">     <external-path name="external_files" path="." /> </paths>

4. 处理异常

将启动活动的代码放入 try-catch 语句中,以捕获可能的异常并记录错误信息:

try {     Intent intent = getWordFileIntent(path);     startActivity(intent); } catch (ActivityNotFoundException e) {     Toast.makeText(this, "找不到可以打开此文件的应用", Toast.LENGTH_LONG).show(); }
上一篇: 为什么我的程序只有一个线程在执行?
下一篇: 了解 RabbitMQ 虚拟主机:有效消息系统的关键

作者:admin @ 24资源网   2024-11-27

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。