This Example shows you the Lists of nodes used in a DOM document. JAXP (Java API for XML Processing) is an interface which provides parsing of xml documents. Here the Document BuilderFactory is used to create new DOM parsers.There are some of the methods used in code given below for Listing nodes of a DOM Tree:-
SAXBuilder builder = new SAXBuilder():-Creates a new SAXBuilder and will first locate a parser via JAXP, then will try to use a set of default SAX Drivers.
Element root = doc.getRootElement():-Returns top-level element of the document.
Iterator iterator = children.iterator():-Iterator is an interface and are just like as enemuration in java collection.Iterator allow the caller to remove elements from the underlying collection during the iteration.
Xml code for the program generated is:-
|
ListingNodes.java
|
Output of the program:-
|
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Listing nodes used in a document
Post your Comment