|
Java™ by example!
|
|
|
How do I traverse an DOM tree using a NodeIterator?
(DOM Level 2!) A NodeIterator can come in pretty handy to walk over all the nodes, even though you loose the structure of the document. See the questions/answers about TreeWalker to retain the structure. The following simple example shows you how it works. If you have played around with FileFilters before, it's a no-brainer. It shows all the zip codes that contain a "8". For more information on the NodeIterator, the NodeFilter and their options, check out the API docs: NodeIterator, NodeFilter customers.xml (!!remove the space between ? and xml):
Main.java:
outputs:
Further Information
Author of answer: Joris Van den Bogaert
Comments to this answer are only viewable by members. Login or become a member!
|
|
|
|
|