如何正确处理加密的Word和Excel文档以在UIWebView中查看?
我有一个 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 浏览器会显示以下错误消息:
我自己的 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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一些进展:
如果我在 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?