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(); }
以上就是Android 打开 Word 文件提示程序异常,如何排查解决?的详细内容,更多请关注其它相关文章!