XMLReaderFactory
Stay organized with collections
Save and categorize content based on your preferences.
Factory for creating an XML reader.
This module, both source code and documentation, is in the
Public Domain, and comes with NO WARRANTY.
See http://www.saxproject.org
for further information.
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.
Inherited Method Summary
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals( Object obj)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
|
final
Class<?>
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait(long timeout, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long timeout)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
Public Methods
public
static
XMLReader
createXMLReader
()
Attempt to create an XMLReader from system defaults.
In environments which can support it, the name of the XMLReader
class is determined by trying each these options in order, and
using the first one which succeeds:
- If the system property
org.xml.sax.driver
has a value, that is used as an XMLReader class name.
- The JAR "Services API" is used to look for a class name
in the META-INF/services/org.xml.sax.driver file in
jarfiles available to the runtime.
- SAX parser distributions are strongly encouraged to provide
a default XMLReader class name that will take effect only when
previous options (on this list) are not successful.
- Finally, if
ParserFactory.makeParser()
can
return a system default SAX1 parser, that parser is wrapped in
a ParserAdapter
. (This is a migration aid for SAX1
environments, where the org.xml.sax.parser
system
property will often be usable.)
In environments such as small embedded systems, which can not
support that flexibility, other mechanisms to determine the default
may be used.
Note that many Java environments allow system properties to be
initialized on a command line. This means that in most cases
setting a good value for that property ensures that calls to this
method will succeed, except when security policies intervene.
This will also maximize application portability to older SAX
environments, with less robust implementations of this method.
Throws
SAXException |
If no default XMLReader class
can be identified and instantiated. |
public
static
XMLReader
createXMLReader
(String className)
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.
Parameters
className |
the name of the class that should be instantiated.
Note that this method will not be usable in environments where
the caller (perhaps an applet) is not permitted to load classes
dynamically. |
Throws
SAXException |
If the class cannot be
loaded, instantiated, and cast to XMLReader. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[[["\u003cp\u003e\u003ccode\u003eXMLReaderFactory\u003c/code\u003e provides static methods to create XML readers, either from system defaults or a specified class name.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ecreateXMLReader()\u003c/code\u003e attempts to create an XML reader using system properties, JAR services, or by wrapping a default SAX1 parser.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ecreateXMLReader(String className)\u003c/code\u003e instantiates an XML reader using the given class name.\u003c/p\u003e\n"],["\u003cp\u003eDistributions bundled with parsers should customize the no-arguments \u003ccode\u003ecreateXMLReader\u003c/code\u003e to enhance parser discovery, even without external configuration.\u003c/p\u003e\n"]]],[],null,["# XMLReaderFactory\n\npublic final class **XMLReaderFactory** extends [Object](../../../../../reference/java/lang/Object.html) \nFactory for creating an XML reader.\n\n\u003e *This module, both source code and documentation, is in the\n\u003e Public Domain, and comes with **NO WARRANTY**.* See \u003chttp://www.saxproject.org\u003e for further information.\n\nThis class contains static methods for creating an XML reader\nfrom an explicit class name, or based on runtime defaults: \n\n```\n try {\n XMLReader myReader = XMLReaderFactory.createXMLReader();\n } catch (SAXException e) {\n System.err.println(e.getMessage());\n }\n \n```\n\n**Note to Distributions bundled with parsers:**\nYou should modify the implementation of the no-arguments\n*createXMLReader* to handle cases where the external\nconfiguration mechanisms aren't set up. That method should do its\nbest to return a parser when one is in the class path, even when\nnothing bound its class name to `org.xml.sax.driver` so\nthose configuration mechanisms would see it.\n\n\u003cbr /\u003e\n\n### Public Method Summary\n\n|-------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| static [XMLReader](../../../../../reference/org/xml/sax/XMLReader.html) | [createXMLReader](../../../../../reference/org/xml/sax/helpers/XMLReaderFactory.html#createXMLReader())() Attempt to create an XMLReader from system defaults. |\n| static [XMLReader](../../../../../reference/org/xml/sax/XMLReader.html) | [createXMLReader](../../../../../reference/org/xml/sax/helpers/XMLReaderFactory.html#createXMLReader(java.lang.String))([String](../../../../../reference/java/lang/String.html) className) Attempt to create an XML reader from a class name. |\n\n### Inherited Method Summary\n\nFrom class [java.lang.Object](../../../../../reference/java/lang/Object.html) \n\n|-------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [Object](../../../../../reference/java/lang/Object.html) | [clone](../../../../../reference/java/lang/Object.html#clone())() Creates and returns a copy of this `Object`. |\n| boolean | [equals](../../../../../reference/java/lang/Object.html#equals(java.lang.Object))([Object](../../../../../reference/java/lang/Object.html) obj) Compares this instance with the specified object and indicates if they are equal. |\n| void | [finalize](../../../../../reference/java/lang/Object.html#finalize())() Invoked when the garbage collector has detected that this instance is no longer reachable. |\n| final [Class](../../../../../reference/java/lang/Class.html)\\\u003c?\\\u003e | [getClass](../../../../../reference/java/lang/Object.html#getClass())() Returns the unique instance of [Class](../../../../../reference/java/lang/Class.html) that represents this object's class. |\n| int | [hashCode](../../../../../reference/java/lang/Object.html#hashCode())() Returns an integer hash code for this object. |\n| final void | [notify](../../../../../reference/java/lang/Object.html#notify())() Causes a thread which is waiting on this object's monitor (by means of calling one of the `wait()` methods) to be woken up. |\n| final void | [notifyAll](../../../../../reference/java/lang/Object.html#notifyAll())() Causes all threads which are waiting on this object's monitor (by means of calling one of the `wait()` methods) to be woken up. |\n| [String](../../../../../reference/java/lang/String.html) | [toString](../../../../../reference/java/lang/Object.html#toString())() Returns a string containing a concise, human-readable description of this object. |\n| final void | [wait](../../../../../reference/java/lang/Object.html#wait(long,%20int))(long timeout, int nanos) Causes the calling thread to wait until another thread calls the `notify()` or `notifyAll()` method of this object or until the specified timeout expires. |\n| final void | [wait](../../../../../reference/java/lang/Object.html#wait(long))(long timeout) Causes the calling thread to wait until another thread calls the `notify()` or `notifyAll()` method of this object or until the specified timeout expires. |\n| final void | [wait](../../../../../reference/java/lang/Object.html#wait())() Causes the calling thread to wait until another thread calls the `notify()` or `notifyAll()` method of this object. |\n\nPublic Methods\n--------------\n\n#### public static [XMLReader](../../../../../reference/org/xml/sax/XMLReader.html)\n**createXMLReader**\n()\n\nAttempt to create an XMLReader from system defaults.\nIn environments which can support it, the name of the XMLReader\nclass is determined by trying each these options in order, and\nusing the first one which succeeds:\n\n- If the system property `org.xml.sax.driver` has a value, that is used as an XMLReader class name.\n- The JAR \"Services API\" is used to look for a class name in the *META-INF/services/org.xml.sax.driver* file in jarfiles available to the runtime.\n- SAX parser distributions are strongly encouraged to provide a default XMLReader class name that will take effect only when previous options (on this list) are not successful.\n- Finally, if [ParserFactory.makeParser()](../../../../../reference/org/xml/sax/helpers/ParserFactory.html#makeParser()) can return a system default SAX1 parser, that parser is wrapped in a [ParserAdapter](../../../../../reference/org/xml/sax/helpers/ParserAdapter.html). (This is a migration aid for SAX1 environments, where the `org.xml.sax.parser` system property will often be usable.)\n\nIn environments such as small embedded systems, which can not\nsupport that flexibility, other mechanisms to determine the default\nmay be used.\n\nNote that many Java environments allow system properties to be\ninitialized on a command line. This means that *in most cases*\nsetting a good value for that property ensures that calls to this\nmethod will succeed, except when security policies intervene.\nThis will also maximize application portability to older SAX\nenvironments, with less robust implementations of this method.\n\n\u003cbr /\u003e\n\n##### Returns\n\n- A new XMLReader. \n\n##### Throws\n\n| [SAXException](../../../../../reference/org/xml/sax/SAXException.html) | If no default XMLReader class can be identified and instantiated. |\n|------------------------------------------------------------------------|-------------------------------------------------------------------|\n\n##### See Also\n\n- [createXMLReader(java.lang.String)](../../../../../reference/org/xml/sax/helpers/XMLReaderFactory.html#createXMLReader(java.lang.String)) \n\n#### public static [XMLReader](../../../../../reference/org/xml/sax/XMLReader.html)\n**createXMLReader**\n([String](../../../../../reference/java/lang/String.html) className)\n\nAttempt to create an XML reader from a class name.\n\nGiven a class name, this method attempts to load\nand instantiate the class as an XML reader.\n\n\u003cbr /\u003e\n\n##### Parameters\n\n| className | the name of the class that should be instantiated. Note that this method will not be usable in environments where the caller (perhaps an applet) is not permitted to load classes dynamically. |\n|-----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n\n##### Returns\n\n- A new XML reader. \n\n##### Throws\n\n| [SAXException](../../../../../reference/org/xml/sax/SAXException.html) | If the class cannot be loaded, instantiated, and cast to XMLReader. |\n|------------------------------------------------------------------------|---------------------------------------------------------------------|\n\n##### See Also\n\n- [createXMLReader()](../../../../../reference/org/xml/sax/helpers/XMLReaderFactory.html#createXMLReader())"]]