Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials:
 

Software Solutions and Services
 

 
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments
 
Creating a DocumentFragment Subtree and Appending it to the Document 
 

This Example shows how to Create a DocumentFragment Subtree and describes the way to Append this fragment tree to a DOM document.

 

Creating a DocumentFragment Subtree and Appending it to the Document

                         

This Example shows  how to Create a DocumentFragment Subtree and describes the way to Append this fragment tree to 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. Here we use "javax.xml.transform" package that defines the generic APIs to process transformation instructions, it also performs a transformation from source to result. There are some of the methods used in code given below for Creating a DocumentFragment subtree:-

Element root = doc.getDocumentElement():- This method allows direct access to the root Element of the document.

TransformerFactory factory = TransformerFactory.newInstance():- TransformerFactory is a class that is used to create Transformer objects. A TransformerFactory instance can be used to create Transformer and Templates objects.

transformer.transform(source, result):- This function organize data according to a style sheet as we are retrieving it from the File.

Element element = doc.createElement("name"):- This method creates an Element Node. Here "name" is the String that specifies the name of the element node.

Text text = doc.createTextNode(name):- This method creates a Text Node. Here "name" is the String that specifies the text for the node.

element.appendChild(text):- This method adds a node after the last child node of the specified node.


Xml code for the program generated is:-

<?xml version="1.0" encoding="UTF-8"?>
<Company>
    <Employee>
        <Employeename>Girish Tewari</Employeename>
        <email>girish@gmail.com</email>
    </Employee>
    <Employee>
        <Employeename>Komal</Employeename>
        <email>Komal@gmail.com</email>
    </Employee>
    <Employee>
        <Employeename>Mahendra</Employeename>
        <email>dhoni@gmail.com</email>
    </Employee>
</Company>

                       
Creatingdocumentfragment.java

/* 
 * @Program for Creating a DocumentFragment Subtree and Appending to the Document
 * Creatingdocumentfragment.java 
 * Author:-RoseIndia Team
 * Date:-10-Jun-2008
 */

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

public class Creatingdocumentfragment {

    public static void main(String[] args) throws Exception {
        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
        Document doc = factory.newDocumentBuilder().parse(new File("2.xml"));
        new Creatingdocumentfragment().newFragment(doc);
    }

    public void newFragment(Document doc) throws Exception {

        Element root = doc.getDocumentElement();
        DocumentFragment fragment = doc.createDocumentFragment();
        Element person = Fragmenttree(doc, "Girish""developer");
        fragment.appendChild(person);
        person = Fragmenttree(doc, "Komal""Developer");
        fragment.appendChild(person);
        root.appendChild(fragment);
        TransformerFactory factory = TransformerFactory.newInstance();
        Transformer transformer = factory.newTransformer();

        transformer.setOutputProperty(OutputKeys.INDENT, "yes");

        // create string from xml tree
        StringWriter sw = new StringWriter();
        StreamResult result = new StreamResult(sw);
        DOMSource source = new DOMSource(doc);
        transformer.transform(source, result);
        String xmlString = sw.toString();
        System.out.println(xmlString);
    }

    public Element Fragmenttree(Document doc, String name, String Status) {
        Element element = doc.createElement("name");
        Text text = doc.createTextNode(name);
        element.appendChild(text);

        Element status = doc.createElement("Status");
        Text text1 = doc.createTextNode(Status);
        status.appendChild(text1);

        Element Person = doc.createElement("person");
        Person.appendChild(element);
        Person.appendChild(status);
        return (Person);

    }
}


Output of the program:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Company>
    <Employee>
        <Employeename>Girish Tewari</Employeename>
        <email>girish@gmail.com</email>
    </Employee>
    <Employee>
        <Employeename>Komal</Employeename>
        <email>Komal@gmail.com</email>
    </Employee>
    <Employee>
        <Employeename>Mahendra</Employeename>
        <email>dhoni@gmail.com</email>
    </Employee>
<person>
<name>Girish</name>
<Status>developer</Status>
</person>
<person>
<name>Komal</name>
<Status>Developer</Status>
</person>
</Company>

           
Download SourceCode

                         

» View all related tutorials
Related Tags: c xml error file dom class ui console build classes parse parser method get vi factory using ole this id

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 
Training Courses
Tell A Friend
Your Friend Name
Website Designing Services
 
Web Designing Packages From $150!
 
Website Designing Company Web Hosting
 
Website Designing Quotation
 
Search Tutorials:

 

 
 

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.