如何在 Objective-C 中递归遍历 XML 文件?

发布于 2024-11-26 02:08:00 字数 839 浏览 2 评论 0原文

我得到以下 XML 结构:

<categories>
    <category>
        <name>Category_1</name>
        <ID>100</ID>
        <SubCategories>
            <category>
                <name>Category_2</name>
                <ID>101</ID>
                <SubCategory>
                    <category>
                        <name>Category_3</name>
                        <ID>102</ID>
                        <SubCategory></SubCategory>
                    </category>
                </SubCategory>
            </category>
        </SubCategories>
    </category>
</categories>

我想解析该文件并将每个元素写入数据库。我使用 TouchXML 进行解析,因为它快速且易于使用,但我不知道是否是正确的解析器。如果有人能帮助我,那就太好了。

谢谢你!

I got the following XML-Structure:

<categories>
    <category>
        <name>Category_1</name>
        <ID>100</ID>
        <SubCategories>
            <category>
                <name>Category_2</name>
                <ID>101</ID>
                <SubCategory>
                    <category>
                        <name>Category_3</name>
                        <ID>102</ID>
                        <SubCategory></SubCategory>
                    </category>
                </SubCategory>
            </category>
        </SubCategories>
    </category>
</categories>

I want to parse this file and write every element into a database. I use TouchXML to do the parsing because it is fast and easy to use but I don't know if is the right parser. It would be great if someone can help me.

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

独自←快乐 2024-12-03 02:08:00

解析 XML 的“原生 Cocoa”方法是使用 NSXMLParser

另一方面,如果您熟悉 TouchXML 并且它“快速且易于使用”,您确定需要切换到其他内容吗?

The "native Cocoa" way to parse XML is with an NSXMLParser.

On the other hand, if you're familiar with TouchXML and it's "fast and easy to use", are you sure you need to switch to something else?

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