黑莓打开文件

发布于 2024-11-03 02:48:57 字数 214 浏览 3 评论 0原文

我使用浏览器打开 pdf 文件,但我想使用常规文件管理器以便通过第三方应用程序打开该文件。我该怎么做?

BrowserSession page = Browser.getDefaultSession();
page.displayPage("file:///SDCard/BlackBerry"+Integer.parseInt(tab[4])+".pdf");

I use the browser to open a pdf file, but I want to use the regular file manager in order to open the file with a third party application. How do I do that?

BrowserSession page = Browser.getDefaultSession();
page.displayPage("file:///SDCard/BlackBerry"+Integer.parseInt(tab[4])+".pdf");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迎风吟唱 2024-11-10 02:48:57

这取决于操作系统版本。在 OS 5 中,RIM 添加了 net.rim.device.api.ui.picker.FilePicker 类来满足您的需要。对于 5 之前的操作系统,您必须实现自己的屏幕才能从文件系统中选择文件。您的本地 BB SDK 应包含一个示例应用程序,通过“fileexplorerdemo”搜索以查找该示例并查看代码。

It depends on OS version. In OS 5 RIM added the net.rim.device.api.ui.picker.FilePicker class that does what you need. For pre 5 OS you have to implement your own screen to select a file from the file-system. Your local BB SDK should contain a sample app for this, search by "fileexplorerdemo" to find that sample and to see the code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文