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

Replacing a Text Node with a New CDATA Section Node

                         

This Example describes a method to replace a Text node with new CDATASection Node in a DOM document. Methods which are used for replacement of the text node in the DOM Document are described below :-

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

Element place = (Element) root.getFirstChild():-access the first child of the root.

Element directions = (Element) place.getLastChild():-access the last child of the node place and stores in the new node direction.

CDATASection dirdata = doc.createCDATASection(dirtext):- creates a cdata node with text in it.

directions.replaceChild(dirdata,directions.getFirstChild()):-replaces a child node direction with CDATASection node.

Xml code for the program generated is:-

<?xml version="1.0" encoding="UTF-8"?>
<Company>
    <Location>
        <Employeename>Girish</Employeename>
        <Companyname>Roseindia.net Rohini</Companyname>
    </Location>
</Company>


CDATASectionNode.java
 

/* 
 * @Program that Edit Text by Insertion and Replacement
 * CDATASectionNode.java 
 * Author:-RoseIndia Team
 * Date:-10-Jun-2008
 */

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

public class CDATASectionNode {

    public static void main(String[] argsthrows Exception {
        DocumentBuilderFactory builderFactory = DocumentBuilderFactory.
                                                   newInstance
();
        builderFactory.setValidating(false);

        Document doc = builderFactory.newDocumentBuilder().
                         parse
(new File("Document8.xml"));
        new CDATASectionNode().addCDATA(doc);
    }

    public void addCDATA(Document doc) {
        Element root = doc.getDocumentElement();
        Element Location = (Elementroot.getFirstChild();
        Element Companyname = (ElementLocation.getLastChild();
        System.out.println("Text node before Replacing is: "+
                  Companyname.getFirstChild
().getNodeValue());
        String dirtext ="\n"+
                "Rose\n" +
                "India\n" +
                ".Net\n" +
                "Rohini\n"+
                "<>";
        CDATASection dirdata = doc.createCDATASection(dirtext);
        Companyname.replaceChild(dirdata,Companyname.getFirstChild());
        System.out.println("Text node after Replacing is: "+
                 Companyname.getFirstChild
().getNodeValue());
          
    }
}


Output of the program

Text node before Replacing is: Roseindia.net Rohini
Text node after Replacing is: 
Rose
India
.Net
Rohini
<>

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:
ask user to enter valu
compare 3 numbers in J
reading a CSV file in
'string variable in sw
JSF model
Logging an Exception i
Combattons la programm
enumaration
Display tag library
Photoshop Custom Bear
create file menu using
Linux Caixa Mâ?¤?â?¨?â
Paint Shop Pro Text Ef
FileReader java
jpa spring transaction
Create XML file from f
how to read a file fro
Photoshop Textures and
insert delete update j
conversion of decimal
drop down in jsp
system accounting open
java system package
draw triangle
Combattons la programm
array in javascript
ServletContextListener
Vector
java source code-keybo
beans servlet
Java Mysql
Connecting to the MS s
life cycle of java ser
DateFormat.LONG
XML document java
web.xml definition
appale
define functions in js
how to retrieve databa
conditionally hide tab
change color in JTabl
Java example program t
covert uppercase to lo
input in java
Ñ?Ð?Ð?Ñ?Ð????Ñ?Ð?Ð?Ñ?Ð
menu in J2ME
reading excel file usi
spring hybernate eclip
javapdfs
Convert Black
convert linked list to
how to input 2 xml fil
abstract class in java
sum of numbers by grou
convert byte to chat
How to bring label to
<displaytag>
Flash Actionscripting
pass textbox value fro
Map
Java Security A three-
jdbc connections
add title in pdf
tables pdf itext
strings in java
difference between app
.tld files
insert fields blob
entity beans
Servlet Example To Dis
log4j
java keyboard input
excel lesen
jQuery To Hide the Div
400 book
Byte Stream
tree view
Combattons la programm
web.xml file
Impressive
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.