Preventing Expansion of Entity References While Parsing an XML File : EntityResolver « XML « Java






Preventing Expansion of Entity References While Parsing an XML File

   


import java.io.File;

import javax.xml.parsers.DocumentBuilderFactory;

import org.w3c.dom.Document;

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

    // Prevent expansion of entity references
    factory.setExpandEntityReferences(false);

    // Create the builder and parse the file
    Document doc = factory.newDocumentBuilder().parse(new File("filename"));
  }

}

   
    
    
  








Related examples in the same category

1.implements EntityResolver
2.Getting the Value of an Entity Reference in a DOM Document
3.Resolving entities found in source XML during parsing
4.Intercepting All Accesses to External Entities During XML SAX Parsing
5.Resolves an entity reference or character reference to its value.