[
Lists Home |
Date Index |
Thread Index
]
- From: "XML Doubts" <xmldoubts@hotmail.com>
- To: xml-dev@ic.ac.uk
- Date: Wed, 11 Nov 1998 12:13:20 PST
Hi,
Has any one used the Sun XML library. My question is how to access the
child nodes from the root.
I have tried
....main(String args[]){
....
XmlDocument doc;
Element root = doc.getDocumentElement();
System.out.println("\nRoot: "+root.getTagName());
System.out.println("\nFirstChild:"+
(root.getFirstChild()).getNodeName());
...
}
The first print statement prints the root element, but the second print
statement prints #text which is not what I want. I want to print the
node name.
Like for example in the XML file
<?xml version="1.0"?>
<poem>
<line>Roses are red,</line>
</poem>
The first print statement prints "poem"
The second print statement prints #text.
I want "line" to be printed.
And also how do I get the text inside the "line" tag.
This might be trivial question but I am just a beginner. So bear with
me.
Can anyone help.
Thanks.
Bye
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|