Simple API for XML
- The SAX
API (Javadoc) is defined independent of any
implementation.
- A "de facto" standard.
- It is simple, quick, and can handle documents of any
size.
- You use it by defining a number of methods which will get
called back when the parser reaches the appropriate place in the
file.
- The available methods include
startElement
,
startDocument
, etc.
José M. Vidal
.
2 of 16