你的程序自动关闭,可能是由于文件 URI 权限不正确,或者 Intent
无法正确处理文件类型导致的。我们可以按以下步骤进行排查和修正:
确保你的应用有访问外部存储的权限。在 Android 6.0 及以上版本,需要在运行时请求权限。
在 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);
}
程序崩溃的原因可能是 MIME 类型不正确或 Intent
构建不规范。试试以下代码来确保正确构建用于打开 Word 文档的 Intent
:
public Intent getWordFileIntent(String filePath) {
File file = new File(filePath);
Uri fileUri;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
// Android 7.0 及以上使用 FileProvider
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); // 授予 URI 读取权限
return intent;
}
如果你的目标是 Android 7.0 (API 级别 24) 或更高版本,需使用 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>
将启动活动的代码放入 try-catch
语句中,以捕获可能导致程序崩溃的异常,并记录错误信息:
try {
Intent intent = getWordFileIntent(path);
startActivity(intent);
} catch (ActivityNotFoundException e) {
Toast.makeText(this, "找不到可以打开此文件的应用", Toast.LENGTH_LONG).show();
}
Intent
并使用 FileProvider
处理 Android 7.0 及以上版本的文件共享。try-catch
处理异常,防止程序崩溃。以上回答出自chatgpt
我加<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> 这句怎么变红色?
@tea2007: 233333 这个是写在AndroidManifest里面的,不是写在activity_main.xml里面
@qricis:我没有这个文件?
@tea2007:
@qricis: 谢谢,可以了,断点时执行下面判断权限
if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE)
!= PackageManager.PERMISSION_GRANTED)
{
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 1);
}
没有执行ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 1);
是不是代表已有打开word的权限,排除1. 检查文件路径的权限:
@qricis: 2. 构建用于打开 Word 文件的 Intent:执行完fileUri = FileProvider.getUriForFile(this, getPackageName() + ".fileprovider", file);就出错,错误见下图:
原代码是这样的:
@tea2007: 你第一张图片不是报错的地方,你需要再log里面看错误,例如下面这张图
@qricis: 这里吗,什么问题?
@tea2007: 退出断点模式,直接运行,你这样看不到问题
@qricis:退出断点了,请看看
I Sending signal. PID: 22845 SIG: 9
2024-09-20 15:17:51.820 2407-2696 InputDispatcher system_process
E channel 'e6b53cf com.example.myopenword/com.example.myopenword.MainActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
安卓五升级为安卓10之后就打不开word文档了
@tea2007:
报错的是这一片 你把这块区域弄大些 ,类似这种
这一句就是你错误的原因
@qricis:
@tea2007: android.os.FileUriExposedException
这个异常是由于从 Android 7.0 (API 24) 开始,系统不允许通过 file://
的 URI 来共享文件,这样做会导致应用崩溃。取而代之的是使用 FileProvider
来生成一个 content://
URI,以安全地共享文件。
你可以通过以下步骤来解决这个问题:
AndroidManifest.xml
中配置 FileProvider
在 manifest
文件中,配置 FileProvider
。这一步是为了允许应用通过 content://
URI 共享文件:
<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/file_paths" />
</provider>
</application>
其中 ${applicationId}
是你的应用包名,@xml/file_paths
是定义共享文件路径的文件。
file_paths.xml
在 res/xml/
目录下创建一个 file_paths.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>
这个配置允许你共享 external storage
中的文件。
FileProvider
生成 content://
URI在启动 Intent
打开文档时,需要使用 FileProvider
生成 content://
URI 代替 file://
URI。
import androidx.core.content.FileProvider;
public void openWordFile(String path) {
File file = new File(path);
if (file.exists()) {
// 使用 FileProvider 获取 content URI
Uri uri = FileProvider.getUriForFile(
this,
getPackageName() + ".provider", // 这里的 provider 与 Manifest 中的 authorities 一致
file
);
// 创建打开 Word 文件的 Intent
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(uri, "application/msword");
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); // 授予临时权限
try {
startActivity(intent);
} catch (ActivityNotFoundException e) {
Toast.makeText(this, "没有找到打开 Word 文件的应用", Toast.LENGTH_SHORT).show();
}
} else {
Toast.makeText(this, "文件不存在", Toast.LENGTH_SHORT).show();
}
}
FileProvider
生成一个 content://
URI,这样 Android 系统可以安全地共享文件。getUriForFile
方法生成的 URI 取代了原来的 file://
URI。FLAG_GRANT_READ_URI_PERMISSION
允许目标应用读取该文件。@qricis: 谢谢,附改后的源码:https://files.cnblogs.com/files/blogs/782609/Myopenword.zip?t=1726820830&download=true
麻烦帮忙看看,因改后运行有错,提示如下图:
@tea2007: 我帮你改了一下Manifest代码,你写的有问题
你最好确认一下你的文件是否在路径下
https://files.cnblogs.com/files/blogs/827771/Myopenword.zip?t=1726823489&download=true
@qricis: 我运行你的程序,还有错:
@qricis:
@tea2007: 你要修改sdk的地址,改回你原来的那个
你看看你的local.properties 改为你原来的地址
sdk.dir=C:\Users\CNTest\AppData\Local\Android\Sdk
@qricis: 比之前好很多,但现程序没问题,下面的硬件,平板提示下图,请问这是什么原因:
@qricis: 权限应该是有的吧,你给的这句赋权限,都没执行语句体,就是说它本身已有权限。另我鼠标双击该平板电脑是可以打开word文档的,现问题是用程序调用出问题:
if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE)
!= PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 1);
}
@qricis: 友好,能否帮忙看看这个问题,谢谢
未完待续......................................................
@qricis: 谢谢帮助过我的朋友,问题找到了,与代码无关。是安卓10系统装的wps office版本有问题,换了一个版本就可以用代码打开word了。