22
Copyright © 2000-2001 Profile Consulting Inc.
22
SAX
The Java interfaces are in package
org.xml.sax
.
xml.org
is not
w3c.org.
org.xml is part of
OASIS,
a consortium for "information structuring standards," which includes
Microsoft,
IBM,
Sun,
Adobe,
...
The key callback interface is
ContentHandler,
which defines the callback methods that the parser uses to communicate with the application.
An example parser is
Apache's
org.apache.xerces.parsers.SAXParser.