[
Lists Home |
Date Index |
Thread Index
]
Hi Chisanga,
The reason you are getting this output is that your Java code is not
distinguishing between Text nodes and Element nodes when you process the
content of the root node. Your "formatted" XML includes whitespace
(carriage returns and / or spaces and tabs) which are being noticed by
the parser and inserted into the DOM tree. One way to solve this is to
check the type of the Node using instanceof - see the modified snippet
below.
>
> Java code snippet >>>
> ...
> System.out.print( "Here is the document's root node:" );
> System.out.println( " " + root.getNodeName() );
>
> System.out.println( "Here are its child elements: " );
> NodeList childNodes = root.getChildNodes();
> Node currentNode;
> ...
>
> for ( int i = 0; i < childNodes.getLength(); i++ ) {
>
> currentNode = childNodes.item( i );
if (currentNode instanceof Element) {
>
> // print node name of each child element
> System.out.println( currentNode.getNodeName());
}
>
> }
> ...
Hope this helps!
Cheers,
Kal
|