问题描述
我正在尝试使用loadRequest打开Word和Excel 2003文档,我收到此错误
(在模拟器中)。
无法阅读文档。
阅读文档时出错。
I am trying to open Word and Excel 2003 docs using loadRequest and I am getting this error(in simulator).Unable to Read Document.An error occurred while reading the document.
根据此链接,
UIWebView应该显示doc和xls类型。
UIWebView should display doc and xls types.
任何想法?
还有其他推荐的xls,doc观众吗?
Any ideas?Are there any other recommended xls, doc viewers out there?
谢谢。
推荐答案
我在这些案例中找到的原因是由于密码
受保护的
或加密的
文件,或 webview
的任何文件格式加载
。
The reason i found int these case was due to password
protected
or encrypted
file,or any file format which webview
can load
.
UIWebView有这些 EXCEPTION SFUZipEndOfCentralDirectoryError:遇到上述原因时无法找到中央目录记录
的结尾。
UIWebView has these EXCEPTION SFUZipEndOfCentralDirectoryError: Could not find the end of central directory record
when it encounter with above reason.
您可以加载
这篇关于UIWebView“无法读取文档”错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!