Javax.xml.parsers.SAXParser.isValidating() Method



Description

The Javax.xml.parsers.SAXParser.isValidating() method indicates whether or not this parser is configured to validate XML documents.

Declaration

Following is the declaration for Javax.xml.parsers.SAXParser.isValidating() method

public abstract boolean isValidating()

Parameters

NA

Return Value

This method returns true if this parser is configured to validate XML documents; false otherwise.

Exception

NA

Example

The following example shows the usage of Javax.xml.parsers.SAXParser.isValidating() method.

package com.tutorialspoint;

import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

public class SaxParserDemo {

   public static void main(String[] args) {

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

      try {

         // get a new SAXParser
         SAXParser parser = factory.newSAXParser();

         // check if parser is validating XML
         System.out.println("" + parser.isValidating());

      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

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

false
javax_xml_parsers_saxparser.htm
Advertisements