Java CharacterData.insertData(int offset, String arg)

Syntax

CharacterData.insertData(int offset, String arg) has the following syntax.

void insertData(int offset,  String arg)  throws DOMException

Example

In the following code shows how to use CharacterData.insertData(int offset, String arg) method.


import java.io.StringReader;
/*from   w  ww  .  j a va  2  s .  c  o m*/
import javax.xml.parsers.DocumentBuilderFactory;

import org.w3c.dom.CDATASection;
import org.w3c.dom.CharacterData;
import org.w3c.dom.Document;
import org.xml.sax.InputSource;

public class Main {
  public static void main(String[] argv) throws Exception {
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();

    InputSource is = new InputSource();
    is.setCharacterStream(new StringReader(xmlRecords));
    
    Document doc = factory.newDocumentBuilder().parse(is);

    CDATASection cdataNode = doc.createCDATASection("");

    CharacterData cdata = cdataNode;

    int offset = 0;
    cdata.insertData(offset, "a "); 
    cdata.appendData(" b"); 
    System.out.println(cdataNode);
  }
  static String xmlRecords = "<data></data>";
}

The code above generates the following result.





















Home »
  Java Tutorial »
    org.w3c.dom »




CharacterData
Document
NodeList