This Example describes a method to Delete the first child of the Root node .Methods which are used for Deleting the child of the root node in a DOM tree are described below :-
Element root = doc.getDocumentElement():- Allows direct access to the root of the DOM document.
root.removeChild():-This method removes the Child node.
Xml code for the program generated is:-
<?xml version="1.0" encoding="UTF-8"?> <Company>
<Location>
<Companyname>Roseindia .Net</Companyname>
<Employee>Girish Tewari</Employee>
</Location>
</Company>
|
Deletefirstchild.java
/* |
Output of the program
Length of root before deleting node is: 3 Length of root after deleting node is: 2 |
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: Delete the First Child of the Root Node
Post your Comment