Wednesday, 3 August 2011

Accessing different types of DOM tree nodes

     
 

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

import org.w3c.dom.Attr;
import org.w3c.dom.CharacterData;
import org.w3c.dom.Comment;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.Text;

public class Main {
  public static void main(String[] argvthrows Exception {
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder loader = factory.newDocumentBuilder();
    Document document = loader.parse("sample.xml");
    Element purchaseOrder = document.getDocumentElement();
    printElement(purchaseOrder, "");
  }
  static void printElement(Element element, String indent) {
    System.out.println("Element '" + element.getNodeName() "'");
    NodeList children = element.getChildNodes();
    for (int i = 0; i < children.getLength(); i++) {
      Node child = children.item(i);
      switch (child.getNodeType()) {
      case Node.ELEMENT_NODE:
        printElement((Elementchild, indent + "\t");
        break;
      case Node.ATTRIBUTE_NODE:
        Attr attr = (Attrchild;
        System.out.println("\tAttribute: '" + attr.getName() "' = '" + attr.getValue() "'");
        break;
      case Node.COMMENT_NODE:
        Comment comment = (Commentchild;
        System.out.println("\tComment: '" + comment.getData() "'");
        break;
      case Node.CDATA_SECTION_NODE:
        CharacterData cdata = (CharacterDatachild;
        System.out.println("\tCDatat: '" + cdata.getData() "'");
        break;
      case Node.TEXT_NODE:
        Text text = (Textchild;
        System.out.println("\tText: '" + text.getData() "'");
        break;
      default:
        System.out.println("\tUnknown node type: '" + child.getNodeType() "'");
        break;
      }
    }
  }
}

   
    
    
    
    
  

No comments:

Post a Comment