Class XMLReaderFactory
This class contains static methods for creating an XML reader from an explicit class name, or based on runtime defaults:
 try {
   XMLReader myReader = XMLReaderFactory.createXMLReader();
 } catch (SAXException e) {
   System.err.println(e.getMessage());
 }
 
 Note to Distributions bundled with parsers:
 You should modify the implementation of the no-arguments
 createXMLReader to handle cases where the external
 configuration mechanisms aren't set up.  That method should do its
 best to return a parser when one is in the class path, even when
 nothing bound its class name to org.xml.sax.driver so
 those configuration mechanisms would see it.
- Since:
- 1.4, SAX 2.0
- 
Method SummaryModifier and TypeMethodDescriptionstatic XMLReaderDeprecated.Obtains a new instance of aXMLReader.static XMLReadercreateXMLReader(String className) Deprecated.Attempt to create an XML reader from a class name.
- 
Method Details- 
createXMLReaderDeprecated.Obtains a new instance of aXMLReader. This method uses the following ordered lookup procedure to find and load theXMLReaderimplementation class:- If the system property org.xml.sax.driverhas a value, that is used as an XMLReader class name.
- 
 Use the service-provider loading facility, defined by the
 ServiceLoaderclass, to attempt to locate and load an implementation of the serviceXMLReaderby using the current thread's context class loader. If the context class loader is null, the system class loader will be used.
- 
 Deprecated. Look for a class name in the META-INF/services/org.xml.sax.driverfile in a jar file available to the runtime.
- 
 Otherwise, the system-default implementation is returned. 
 - API Note:
- The process that looks for a class name in the
 META-INF/services/org.xml.sax.driverfile in a jar file does not conform to the specification of the service-provider loading facility as defined inServiceLoaderand therefore does not support modularization. It is deprecated as of Java SE 9 and subject to removal in a future release.
- Returns:
- a new XMLReader.
- Throws:
- SAXException- If no default XMLReader class can be identified and instantiated.
- See Also:
 
- If the system property 
- 
createXMLReaderDeprecated.Attempt to create an XML reader from a class name.Given a class name, this method attempts to load and instantiate the class as an XML reader. Note that this method will not be usable in environments where the caller (perhaps an applet) is not permitted to load classes dynamically. - Parameters:
- className- a class name
- Returns:
- A new XML reader.
- Throws:
- SAXException- If the class cannot be loaded, instantiated, and cast to XMLReader.
- See Also:
 
 
- 
SAXParserFactoryinstead.