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



Description

The Javax.xml.parsers.SAXParser.getParser() method returns the SAX parser that is encapsultated by the implementation of this class.

Declaration

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

public abstract Parser getParser()

Parameters

NA

Return Value

NA

Exception

NA

Example

The following example shows the usage of Javax.xml.parsers.SAXParser.getParser() 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();

         // get the current parser
         System.out.println("" + parser.getParser());

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

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

com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser@2d3bad12
javax_xml_parsers_saxparser.htm
Advertisements