Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

Insert a Processing Instruction and a Comment Node

                         

This Example shows you how to Insert a Processing Node and Comment Node in a DOM document. JAXP (Java API for XML Processing) is an interface which provides parsing of xml documents. Here the Document BuilderFactory is used to create new DOM parsers. There are some of the methods used in code given below for Inserting Nodes:-

ProcessingInstruction instruction = doc.createProcessingInstruction("open", "close"):- This method creates a ProcessingInstruction with the specified target name and data string. Here target name is "open" and data string is "close".

root.insertBefore(instruction, node):- This method inserts a new child node before an existing child node. Here new node is instruction and existing node is node.

Element root = doc.getDocumentElement():- This method creates an instance of an XMLDOMElement.

Comment c = doc.createComment("Roseindia.net is an It company"):- This method creates a Comment Node. Here "Roseindia.net is an It company" is a string that specifies the data for the 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>
<Id>
</Id>
</Company>


InsertProcessingInstruction.java

/* 
 * @Program that Insert a Processing Instruction and a Comment
 * InsertProcessingInstruction.java 
 * Author:-RoseIndia Team
 * Date:-10-Jun-2008
 */

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

public class InsertProcessingInstruction {

    public static void main(String[] args) throws Exception {

        DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
        builderFactory.setValidating(false);

        Document doc = builderFactory.newDocumentBuilder().parse(new File("Document4.xml"));

        new InsertProcessingInstruction().ProcessingInstruction(doc);
        new InsertProcessingInstruction().comment(doc);
    }

    public void ProcessingInstruction(Document doc) {
        Element root = doc.getDocumentElement();
        Node node = root.getLastChild();
        //creates a ProcessingInstruction with the specified target name and data string
        ProcessingInstruction instruction = 
                                    doc.createProcessingInstruction(
"open""close");
        root.insertBefore(instruction, node);
        System.out.println("ProcessingInstruction created is: " + root.getFirstChild().
                                                                  getNextSibling());


    }

    public void comment(Document doc) {
        Element root = doc.getDocumentElement();
        Node n = root.getFirstChild();

        Comment c = doc.createComment("Roseindia.net is an It company");
        //inserts a new node before an existing node.
        root.insertBefore(c, n);
        System.out.println("Commentnode inserted is: " + root.getFirstChild());

    }
}


Output of the program:

ProcessingInstruction created is: [open: close]
Commentnode inserted is: [#comment: Roseindia.net is an It company]


Download SourceCode

                         

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 
Join and Excel yourself with our Online instructor led training sessions
Training Courses
Tell A Friend
Your Friend Name

 

 
 

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 | Flex 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.