This Example gives a way to Find an ID value and Print the Text in a DOM document . The Methods which are used for Finding an ID value in the code are described below :-
Element root = doc.getDocumentElement():-allows direct access to the root of the DOM Document.
Node node=root.getFirstChild().getFirstChild():-Direct access to the subchild of the root .
Text text = (Text) node.getFirstChild():- it Retrives the text of the Node named node
XML code for the program generated is:-
<?xml version="1.0" encoding="UTF-8"?> <Company> <Employee> <name Girish="Gi">Roseindia.net</name> </Employee> <Employee> <name Komal="Ko">newsTrack</name> </Employee> <Employee> <name Mahendra="Rose">Singh</name> </Employee> </Company> |
Findbyid.java :-
/*
|
Output of the program:-
Girish locates the name Roseindia.net |
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: Finding an ID Value and Print the Element Text
Post your Comment