Source Code : Java DOM edit: Splitting One Text Node into Three
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Java DOM edit: Splitting One Text Node into Three
//An Element with a Single Block of Text
/*
<?xml version="1.0" standalone="yes"?>
<!DOCTYPE story [
<!ELEMENT story (paragraph)*>
<!ELEMENT paragraph (#PCDATA)>
]>
<story>
<paragraph>Once upon a time</paragraph>
</story>
*/
public void split(Document doc) {
Element root = doc.getDocumentElement();
Element paragraph = (Element)root.getFirstChild();
Text text = (Text)paragraph.getFirstChild();
Text newText = text.splitText(20);
newText.splitText(50);
}
Thank with us