Chapter 3. Implementing Simple APIs for XML

IN THIS CHAPTER

An XML document is essentially a text document that is meaningful only when an application can process it and get the desired data. There are three standards by which an XML document can be processed: Simple APIs for XML (SAX), Document Object Model (DOM), and XSL Transformations (XSLT).

SAX is a public domain API that uses an event-driven mechanism to parse XML documents. This implies that the parser reads an XML document, and each time it recognizes a valid XML syntax (such as <, </, and so on), it notifies the application ...

Get Java™ APIs for XML Kick Start now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.