XML 性能应用程序问题

发布于 2024-11-14 04:59:04 字数 796 浏览 2 评论 0原文

我正在测试 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文