如何在android中渲染pptx,word

发布于 2024-12-12 02:04:00 字数 122 浏览 0 评论 0原文

Android webview 不支持 pptx、word mime 类型吗?ios UIWebView 也支持这一点,我也期待着同样的功能。我在网上搜索,找不到任何用于 ppt、word、xls 的第三方库。有任何单词吗?谢谢!

Does not the android webview support pptx,word mime types.Well the ios UIWebView does this and I was expecting the same.I searched the net,could not find any third party libraries for ppt,word,xls.Any word anybody?Thanks!

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

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

发布评论

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

评论(1

淡笑忘祈一世凡恋 2024-12-19 02:04:00

android webview 不支持 pptx,word mime 类型吗?

不。WebView 呈现 Web 内容。 PPTX 和 DOC 是 Microsoft 的专有文件格式,与 Web 没有特别关系。

好吧,ios UIWebView 就是这么做的,我也期待着同样的事情

。也许 Apple 拥有在 Web 组件中渲染非 Web 文件格式的专利。

我在网上搜索,找不到任何ppt、word、xls的第三方库。

我真诚地怀疑是否有一个库(即 JAR)可以实现这一点。有些应用程序可以呈现(和编辑)此内容,您可以使用 ACTION_VIEW Intents (具有正确的 MIME 类型)和 ACTION_VIEW 轻松地将文件移交给这些应用程序代码>startActivity()。

Does not the android webview support pptx,word mime types.

No. WebView renders Web content. PPTX and DOC are proprietary file formats from Microsoft that are not particularly related to the Web.

Well the ios UIWebView does this and I was expecting the same

Perhaps Apple has a patent on rendering non-Web file formats in Web components.

I searched the net,could not find any third party libraries for ppt,word,xls.

I sincerely doubt that there is a library (i.e., JAR) for this. There are apps that render (and edit) this content, and you can hand off your files to those apps easily enough using ACTION_VIEW Intents (with the right MIME type) and startActivity().

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