Creates element node, attribute node, comment node, processing instruction and a CDATA section
This Example shows you how to Create an Element node ,Comment node ,Attribute node, Processing node and CDATA section node in 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. These are some of the methods used in code given below for adding attribute:-
Element root = doc.createElement("Company"):-This method creates an element node ,Here Company specifies the name for the element node.
doc.appendChild(root):-This method adds a node after the last child node of the specified element node.
Comment node = doc.createComment("Comment for company"):-This method creates an Comment node ,Here "Comment for company" specifies the name for the Comment node.
CDATASection cdata = doc.createCDATASection("Roseindia <, >, .net rohini"):- This method creates a CDATASection node. Here string "Roseindia <, >, .net rohini" specifies the data for the node
Xml code for the program generated is:-
<?xml version="1.0" encoding="UTF-8"?> <root></root> |
CreatesElementnode.java:-
import java.io.*;
|
Output of the program:-
Element node created is: Company Comment node created is: [#comment: Comment for company] CData node created is: [#cdata-section: Roseindia <, >, .net rohini] ProcessingInstruction node created is: [Roseindia: Rohini] |