如何正确处理加密的Word和Excel文档以在UIWebView中查看?

发布于 2024-09-10 10:14:38 字数 891 浏览 1 评论 0原文

我有一个 UIWebView,可以很好地查看存储在应用本地文档文件夹中的未加密 Word 或 Excel 文档。

我可以使用:

[webView loadData:documentData MIMEType:mimeType textEncodingName:textEncoding baseURL:baseDocumentURL];

或者:

[webView loadRequest:[NSURLRequest requestWithURL:baseDocumentURL]];

在这两种情况下,baseDocumentURL 都是指向应用程序本地文档文件夹中文件的 file:// URL。

问题

如果我尝试通过-loadData:MIMEType:textEncodingName:baseURL:查看加密Word或Excel文档code> 或通过 -loadRequest: — 我的应用程序抛出异常并崩溃。

如果我通过 Web 服务器通过 Mobile Safari 查看文档,Safari 浏览器会显示以下错误消息:

alt text

我自己的 UIWebView 在 Mobile Safari 工作时崩溃。我在设置 Web 视图时缺少什么导致抛出异常?

I have a UIWebView that works fine for viewing an unencrypted Word or Excel document stored in the app's local Documents folder.

I can use either:

[webView loadData:documentData MIMEType:mimeType textEncodingName:textEncoding baseURL:baseDocumentURL];

Or:

[webView loadRequest:[NSURLRequest requestWithURL:baseDocumentURL]];

In both cases, baseDocumentURL is a file:// URL pointed at a file in the app's local Documents folder.

ISSUE

If I try to view an encrypted Word or Excel document — by either -loadData:MIMEType:textEncodingName:baseURL: or by -loadRequest: — my app throws an exception and crashes.

If I view the document through a web server, via Mobile Safari, the Safari browser displays the following error message:

alt text

My own UIWebView crashes while Mobile Safari works. What am I missing in setting up my web view that is causing an exception to be thrown?

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

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

发布评论

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

评论(1

你的心境我的脸 2024-09-17 10:14:38

一些进展:

如果我在 Xcode 中禁用 objc_exception_throw 全局断点,那么我的应用程序的 Web 视图的行为类似于 Mobile Safari Web 视图,显示相同的“此文档已加密,无法打开”。视图中的错误。

问:

有没有办法在加载 URL 之前发送凭据或我的 UIWebView 可以用来解密 Office 文档的其他信息?

Some progress:

If I disable the objc_exception_throw global breakpoint in Xcode, then my app's web view behaves like the Mobile Safari web view, showing the same "This document is encrypted and can't be opened." error within the view.

Question:

Is there a way to send credentials or other information that my UIWebView can use to decrypt the Office document before loading the URL?

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