There are a variety of tools out there that allow you to interact with the structure of XML documents. The previous tutorial focused on one of these technologies, the W3C's Document Object Model (DOM). This tutorial tackles another such technology, known as SAX. SAX (Simple API for XML) is an API that can be used to analyze and extract data from an XML document.
In this tutorial, you'll learn
- What SAX is and how it works
- How to get a SAX parser for your favorite programming language
- How to write a Java program that uses a SAX parser to process an XML file
by
updated