XML 性能应用程序问题
我正在测试 XML 性能应用程序。但我没有获取 iTunes xml,而是在捆绑包中创建了本地 xml 文件。文件的内容如下:
<Songs>
<channel>
<item>
<title>
title
</title>
<category>
category
</category>
<itms:artist>
artist
</itms:artist>
<itms:album>
album
</itms:album>
<itms:releasedate>
November 23, 1937
</itms:releasedate>
</item>
</channel>
</Songs>
当我使用 NSXMLParser 解析它时,未显示发布日期,其他所有内容都显示正确。但是,当我使用 Libxml2 解析器进行解析时,应用程序崩溃,并在控制台上显示“由于未捕获的异常‘NSInternalInconsistencyException’而终止应用程序,原因:‘SAX 解析期间遇到未处理的错误。’”。
I am testing XML performance app. But instead of fetching iTunes xml I have created my a local xml file in the bundle. The content of the file is given below:
<Songs>
<channel>
<item>
<title>
title
</title>
<category>
category
</category>
<itms:artist>
artist
</itms:artist>
<itms:album>
album
</itms:album>
<itms:releasedate>
November 23, 1937
</itms:releasedate>
</item>
</channel>
</Songs>
When I am parsing it with NSXMLParser release date is not showing, everything else is showing properly. But while I am parsing with Libxml2 parser app is crashing showing "Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Unhandled error encountered during SAX parse.'" this on console.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论