gpt4 book ai didi

android - 在我的 android 应用程序中查看 excel 文件

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:21:28 26 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序,在该应用程序中我必须在单击按钮时打开和关闭 excel 文件。这些 excel 文件将是只读的。关闭 excel 文件后,它应该将我引导至该应用程序。

请给我建议一种方法。

最佳答案

Android 7.0 更新:

如果您尝试使用外部应用打开您的应用文档,Android 7.0 将抛出 FileUriExposedException。您需要实现 FileProvider 引用 This Answer .


这是一条手动路线。

Using JExcelApi in an Android App

How to read excel file using JXL 2.6.12 jar


但这里更简单一些。

open application

但我猜你必须找出MIME TYPE

编辑

也得到了 mime 类型

Setting mime type for excel document

更新

所以这样的事情可能会奏效。

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/vnd.ms-excel");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);


try {
startActivity(intent);
}
catch (ActivityNotFoundException e) {
Toast.makeText(OpenDoc.this, "No Application Available to View Excel", Toast.LENGTH_SHORT).show();
}

关于android - 在我的 android 应用程序中查看 excel 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7170180/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com