The XMLReaderFactory Class
XMLReaderFactory
creates XMLReader
instances in
a parser-independent manner. The noargs
createXMLReader( )
method instantiates
the class named by the org.xml.sax.driver
system property. The
other createXMLReader( )
method
instantiates the class named by its argument. This argument should
be a fully packaged qualified name, such as org.apache.xerces.parsers.SAXParser
:
package org.xml.sax.helpers; public final classXMLReaderFactory
{ public static XMLReadercreateXMLReader
( ) throws SAXException; public static XMLReadercreateXMLReader
(StringclassName
) throws SAXException; }