像这样解析 XML

发布于 2024-10-27 05:38:10 字数 568 浏览 1 评论 0原文

<item>
    <RelatedPersons>
        <RelatedPerson>
            <Name>xy</Name>
            <Title>asd</Title>
            <Address>abc</Address>
        </RelatedPerson>
        <RelatedPerson>
            <Name>xy</Name>
            <Title>asd</Title>
            <Address>abc</Address>
        </RelatedPerson>
    </RelatedPersons>
</item>

我想用 SAXParser 解析这些数据。我该怎么做? 我知道有关 SAX 的教程,并且我可以解析任何普通的 RSS,但我无法仅解析这些数据。

<item>
    <RelatedPersons>
        <RelatedPerson>
            <Name>xy</Name>
            <Title>asd</Title>
            <Address>abc</Address>
        </RelatedPerson>
        <RelatedPerson>
            <Name>xy</Name>
            <Title>asd</Title>
            <Address>abc</Address>
        </RelatedPerson>
    </RelatedPersons>
</item>

I d like to parse this data with a SAXParser. How can i do this?
I know the tutorials about SAX, and i can parsing any normal RSS, but i can't parsing this datas only.

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

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

发布评论

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

评论(1

回忆凄美了谁 2024-11-03 05:38:10

定义您的问题:您可能可以做的是创建一个名为 Person 的值对象(PO​​JO),它具有以下属性:name标题地址。解析此 XML 的目标是创建一个 ArrayList对象。定义明确的数据结构可以帮助您围绕它构建逻辑。

选择解析器:然后您可以使用 SAX 解析器或 XML Pull 解析器浏览标签:请参阅此链接,了解有关 Android 中 DOM、SAX 和 XML Pull 解析器的教程

数据填充逻辑:然后在解析时,每当遇到 标记时,实例化一个新的 Person 对象。当您遇到相应的 Properties 标记时,读取该值并将其填充到该对象中。当遇到关闭 时,将此 Person 对象转储到 ArrayList 中。根据您使用的解析器,您将必须使用适当的方法来浏览到子节点/嵌套节点。(有关详细信息,请参阅链接)

当您解析完最后一个项目节点时,您将拥有数组列表。

请注意,这更多的是一个理论上的答案;我希望它有帮助。

Define your Problem: What you can probably do is create a Value Object(POJO) called Person which has the properties: name, title and address. You aim of parsing this XML would then be to create an ArrayList<Person> object. Defining a definite data structure helps you build logic around it.

Choose a Parser : You can then use a SAX Parser or an XML Pull Parser to browse through the tags: see this lin for a tutorial on DOM, SAX and XML Pull Parser in Android.

Data Population Logic: Then while Parsing, whenever you encounter a <RelatedPersons> tag, instantiate a new Person object. When you encounter the respective Properties tag, read the value and populate it in this object. When you encounter a closing </RelatedPersons> dump this Person Object in the ArrayList. Depending on the Parser you use, you will have to use appropriate methods to browse to the child node/nested nodes.(Refer the link for details)

By the time you are done parsing the last item node you will have all the values in your ArrayList.

Note that this is more of a theoretical answer; I hope it helps.

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