NSXMLparser 错误代码 5

发布于 2024-08-29 14:06:37 字数 190 浏览 7 评论 0原文

我在我的应用程序中使用亚马逊的 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 技术交流群。

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

发布评论

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

评论(2

囍笑 2024-09-05 14:06:37

调试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 is NSXMLParserPrematureDocumentEndError.

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?

巷子口的你 2024-09-05 14:06:37

消除此错误的最佳方法(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 .

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