Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML


 
  
 
Programming Tutorials: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML
 

 
Facing Programming Problem?
Ask Questions?, Browse Latest Questions, Question-Answer Guidelines
XML
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

Delete the First Child of the Root Node

                         

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

 

/* 
 * @Program that Delete the First Child of the Root Node
 * Deletefirstchild.java 
 * Author:-RoseIndia Team
 * Date:-09-Jun-2008
 */

import java.io.*;
import javax.xml.parsers.*;
import org.w3c.dom.*;

public class Deletefirstchild {

    public static void main(String[] args) throws Exception {
        boolean validating = false;
        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
        factory.setValidating(validating);
        Document doc = factory.newDocumentBuilder().parse(new File("Document4.xml"));
        new Deletefirstchild().deleteFirstElement(doc);
    }

    public void deleteFirstElement(Document doc) {
        Element root = doc.getDocumentElement();
        //returns the first child of the Root
        //Node child = root.getFirstChild();
        System.out.println("Length of root before deleting node is: "+root.getChildNodes()
                                                                      .getLength());

       // Deletes the First Child of the Root Node
        root.removeChild(root.getFirstChild());
        System.out.println("Length of root after deleting node is: "+root.getChildNodes()
                                                                         .getLength());

        
    }
}


Output of the program

Length of root before deleting node is: 3
Length of root after deleting node is: 2


Download Source Code

                         

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Latest Searches:
page refresh
Drag n Drop file
java random numbers
j2me web service
ve
prepared statement
Photoshop Effects Fant
spring html tags
composition,associatio
Handling Mouse Clicks
display blob in stuts
Parsing the data on th
JSON AJAX
Understanding the Bene
open file
Photoshop Photo Effect
JStatusBar
subreports
ร??ร?ย ร???à¸
taglib example
methods in formdata
Annotations
processAction class
Button
realine()
struts file upload max
jsp laglib
definition of interfac
variance
make keyboard characte
â???â?¬â??â????â???â?¬
java bean insert conne
how to print time stam
two submits using disp
words per line
navigate to other page
sample program
notepad application
pseudocode of magic sq
call Ã??????Ã????Ã???Ã
randomize
Combattons la programm
3DS MAX Basics Adding
oracle database 10g ra
ASP.NET .NET FotoVisio
Java ร?รà¸
display-name
swith statement exampl
est to IST
informatica
how create setup in ja
edit JTable
ASP Database Related U
date mmm yy dd
java program to create
command Sort Header
struts2tag
bufferedImage
fileupload servlet fil
gmt to est
timestamp java servlet
columns in table
print non prime number
show calender days
ddl in sql
data grid insert
viva qus. and ans. of
web.xml file
Inserting values in My
ArrayList
if else strtus 2
array java
equals
Quick Sort
EasyEclipse Server Jav
java source code-keybo
front controller
Murachа?±??а?°?а?
java code splash scree
HTML .htaccess Rewriti
Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.