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

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

                         

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:
how to read xml file i
if else strtus 2
ajax struts combo
Photoshop Photo Effect
jdk1.4 features
Starburst
inheritence
<SELECT> <OPTION>
how to print time stam
XML messaging, Part 2
struts life cycle
create new set
html powerpoint presen
data grid samples
Photoshop Photo Retouc
Catching Exception usi
session facade
ActionScript Tutorial
struts-plugin.xml
validation.xml
pseudocode of magic sq
radio button in html
Catching Exception usi
Many to Many
<bean:define>
jmenubar
B Tree
multiple log files
Photoshop Effects Fant
bomb
Photoshop Effects Shin
dojo login example
prime numbers
EasyEclipse Server Jav
flex spring ibatis
taglib example
what is a Bridge Route
threads\
pop up pane
program in java to imp
bufferedImage
build.xml
Textbox number only
count words.java
hgf
Photoshop Text Effects
spring2
jsp registration form
jQuery To Hide the Div
determinan
insert data to text fi
CSS CSS Table cell rol
JSF tree collapse
Merge Sort In Javascri
e books images
Track wireless session
edit data in mysql dat
Socket tcp
how to display a text
பà¯??�தà¯?à®??à®
CSS CSS Internal Vs Ex
Event Driven Programmi
class bean
show file content
populate drop down fro
multiple channels
Two Dimensional Array
passing values from js
modifying the data in
PHP Database Related M
pattern syntax excepti
Mercurial Eclipse
<SELECT> <OPTION> <FOR
Why Virtual Dedicated
midlet and servlet
packages program in oo
ร??ร?ยà¸?ร???à
java random numbers
java bean
read how many words on
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.