Tuesday, 2 August 2011

Getting the Value of an Entity Reference in a DOM Document

   


import java.io.File;

import javax.xml.parsers.DocumentBuilderFactory;

import org.w3c.dom.Comment;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.EntityReference;
import org.w3c.dom.Text;

public class Main {
  public static void main(String[] argvthrows Exception {
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    factory.setValidating(true);

    factory.setExpandEntityReferences(false);
    Document doc = factory.newDocumentBuilder().parse(new File("filename"));

    Element root = doc.getDocumentElement();
    EntityReference eref = (EntityReferenceroot.getFirstChild();

    Comment comment = (Commenteref.getFirstChild()

    Element elem = (Elementeref.getFirstChild().getNextSibling()

    Text text = (Texteref.getLastChild()
  }
}

   
    
    
  

No comments:

Post a Comment