开发者

how to find the elements name in the xml file using DOM xerces c++..?

开发者 https://www.devze.com 2023-03-01 05:51 出处:网络
I want to know how to read all the elements\' names in the following xml file: <fruits> <apple> ... </apple>

I want to know how to read all the elements' names in the following xml file:

<fruits>
    <apple> ... </apple>
    <banana> ... </banana>
    <grapes> ... </grapes>
    <mango> ... </mango>
    <papaya> ... </papaya>
    <strawberry> ... </strawberry>
</fruits>

Here, the 开发者_Go百科condition is that I am not sure which fruits are available (e.g. whether or not apple is present on that day). I know only the element <fruits> is available; child names are unknown and the number of children for <fruits> is also unknown.

How can I find the fruits available on that day using Xerces DOM parsing?


You can use the DOMNodeIterator to iterate all elements in your DOMDocument and then use the DOMNode->getName() to get the name and check if that's what you need.

0

精彩评论

暂无评论...
验证码 换一张
取 消