|
Préférences
Moteurs de recherche
|
||||||||
| JavaTM 2 Platform Std. Ed. v1.5.0
org.xml.sax.helpers
|
|||||||||
| Method Summary | |
|---|---|
static Parser |
makeParser()
Deprecated. Create a new SAX parser using the `org.xml.sax.parser' system property. |
static Parser |
makeParser(String className)
Deprecated. Create a new SAX parser object using the class name provided. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static Parser makeParser() throws ClassNotFoundException, IllegalAccessException, InstantiationException, NullPointerException, ClassCastException
The named class must exist and must implement the
Parser interface.
NullPointerException - There is no value
for the `org.xml.sax.parser' system property.
ClassNotFoundException - The SAX parser
class was not found (check your CLASSPATH).
IllegalAccessException - The SAX parser class was
found, but you do not have permission to load
it.
InstantiationException - The SAX parser class was
found but could not be instantiated.
ClassCastException - The SAX parser class
was found and instantiated, but does not implement
org.xml.sax.Parser.makeParser(java.lang.String),
Parserpublic static Parser makeParser(String className) throws ClassNotFoundException, IllegalAccessException, InstantiationException, ClassCastException
The named class must exist and must implement the
Parser interface.
className - A string containing the name of the
SAX parser class.
ClassNotFoundException - The SAX parser
class was not found (check your CLASSPATH).
IllegalAccessException - The SAX parser class was
found, but you do not have permission to load
it.
InstantiationException - The SAX parser class was
found but could not be instantiated.
ClassCastException - The SAX parser class
was found and instantiated, but does not implement
org.xml.sax.Parser.makeParser(),
Parser