DocumentBuilderFactory isExpandEntityReferences() Method



Description

The Javax.xml.parsers.DocumentBuilderFactory.isExpandEntityReferences() method indicates whether or not the factory is configured to produce parsers which expand entity reference nodes.

Declaration

Following is the declaration for Javax.xml.parsers.DocumentBuilderFactory.isExpandEntityReferences() method

public boolean isExpandEntityReferences()

Parameters

NA

Return Value

This method returns true if the factory is configured to produce parsers which expand entity reference nodes;false otherwise.

Exception

NA

Example

The following example shows the usage of Javax.xml.parsers.DocumentBuilderFactory.isExpandEntityReferences() method.

package com.tutorialspoint;

import javax.xml.parsers.DocumentBuilderFactory;

public class DocumentBuilderFactoryDemo {

   public static void main(String[] args) {

      // create a new DocumentBuilderFactory
      DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();

      // check if factory is configured to produce parsers
      System.out.println("" + factory.isExpandEntityReferences());

      // change this configuration
      factory.setExpandEntityReferences(false);

      // check if factory is configured to produce parsers
      System.out.println("" + factory.isExpandEntityReferences());


   }
}

If we compile the code and execute it, this will produce the following result −

true
false
javax_xml_parsers_documentbuilderfactory.htm
Advertisements