NSXMLparser 错误代码 5
我在我的应用程序中使用亚马逊的 simpledb。解析 xml 时出现错误,代码为 5。 IE。 NSXMLParserErrorDomain 错误 5。
有时它工作正常,并且导航中没有任何重大更改就会出现该错误。当我多次重新启动应用程序而不对系统中的代码或导航进行任何更改时,它再次工作正常。我无法弄清楚为什么会发生这种情况。
谢谢
I'm using Amazon's simpledb in my app. When parsing xml it gives an error with the code 5.
ie. NSXMLParserErrorDomain error 5.
Sometimes it works fine and without any significant change in the navigation is gives that error. Again it works fine when i restart the app several times without doing any changes to the code or navigation in the system. I cant figure out the reason why this happens.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调试101:查看标题以了解错误的含义。
如果您查看
NSXMLParser.h
,您将看到错误 5 是NSXMLParserPrematureDocumentEndError
。我认为可以肯定地说 XML 文档并不完整。您如何加载文档?您是否确保在解析之前加载整个文档?
Debugging 101: look at the headers to find what errors mean.
If you look at
NSXMLParser.h
, you will see that error 5 isNSXMLParserPrematureDocumentEndError
.I think it's safe to say that the XML document is not complete. How are you loading the document? Are you ensuring that you load the whole document before parsing it?
消除此错误的最佳方法(iPhone -NSXMLParserErrorDomain 错误 5.)
打开 http://www.w3schools .com/xml/xml_validator.asp
在这里验证您的 XML,因为此错误主要是您在 Iphone 中解析的 XML 中的错误。
The Best way to remove this error (IPhone -NSXMLParserErrorDomain error 5.)
open http://www.w3schools.com/xml/xml_validator.asp
Validate your XML here because this error mainly Error in XML that you parse in Iphone .