i want to know how to read the all the elements name in the following xml file..?

"<"fruits>

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

here condition is i am not sure which are fruits available... (apple is present on that day or not...)i know only the element fruits is available(that means child names are unknown and number of child for "fruits" is also unknown).. how can i find which are the fruits available on that day..using xerces DOM parsing

link|improve this question

70% accept rate
feedback

1 Answer

up vote 1 down vote accepted

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.

link|improve this answer
DOMNode doesn't have getName() member function xerces.apache.org/xerces-c/apiDocs-3/classDOMNode.html – Chrys May 20 '11 at 9:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.