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

Splitting One Text Node into Three

                         

This Example describes a method to split a Text node into three new Node in a DOM document. Methods which are used for splitting 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 paragraph = (Element) root.getFirstChild():-creates a new node named paragraph and gets the child of the root in it.

Text newText = text.splitText(5):-This method splits the text node into two nodes at the specified offset.

Xml code for the program generated is:-

<?xml version="1.0" encoding="UTF-8"?>
<Company>
    <name>Rose India in Rohini</name>
</Company>


SplittingTextNode.java

/* 
 * @Program that Splits One Text Node into Three
 * SplittingTextNode.java 
 * Author:-RoseIndia Team
 * Date:-10-Jun-2008
 */

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

public class SplittingTextNode {

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

        Document doc = 
         builderFactory.newDocumentBuilder().parse(
new File("Document5.xml"));
        new SplittingTextNode().split(doc);
    }

    public void split(Document doc) {
        Element root = doc.getDocumentElement();
        Element paragraph = (Element) root.getFirstChild();
        Text text = (Text) paragraph.getFirstChild();
        System.out.println("Text node before spillting is: "+text.getData());
        Text newText = text.splitText(5);
        System.out.println("Spillted First node is: "+newText.getData());
        Text newText1 = newText.splitText(5);
        System.out.println("Spillted Second node is: "+newText1.getData());
        Text newText2 = newText1.splitText(3);
        System.out.print("Spillted Third node is: "+newText2.getData());
    }
}


Output of the program:-

Text node before spillting is: Rose India in Rohini
Spillted First node is: India in Rohini
Spillted Second node is:  in Rohini
Spillted Third node is:  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:
b
add remove from combo
retrieve image from da
Photoshop Web Layouts
data binding
difference b/w passbyv
java awt
doget
how to access static m
ArrayList
Ñ?оâ?????Ñ?оâ????Ñ?Ð
à¹??à¸??à¹??à¸???à¹??à
value change listener
JavaFX 3D Effect Examp
hidden
how create mp3 player
session
create a moving banner
Textbox number only
property formula hib
display blob in struts
validation.xml
build.xml
java ึะ à¸?à¸?à¸?à
first write and then r
ajax sample code onkey
ASP Miscellaneous Dete
simple sample program
JSF column
�б?�а??�б?�
ArrayIndexOutOfBoundsE
Parasoft Jtest
input string into text
increment value of yea
DOJO
ajax code for retrievi
download
hibernate connection p
map iteration in jstl
create bar graph in ja
programme for registra
insert content to text
how to read a single d
PHP5
java program of counti
Java Mysql
program to display sta
examples of jdbc
File Validation code
PHP Image Manipulation
HOW TO UPLOAD IMAGE FR
PHP Date and .....:/pw
socket
timestamp java servlet
populate drop down fro
determinan
reflection api
how to send sms to mob
Socket tcp
export database data i
struts2 checkbox
program for marklist
how to pass same varia
code to store the comb
java card framework
Accepts
da Jfreechart a image
how the validate() wil
string index exception
multiple submit button
Text Searching Lucene
PHP Date and .....:/pw
i18n example struts2
delete data to text fi
Framework for Java Dat
break?°???????°?????
Photoshop Refrozen Eff
setting values to Requ
store image from mysql
date adjust timezone
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.