Streaming API for XML (StAX) is an application programming interface (API) to read and write XML documents in the Java programming language.
Traditionally, XML APIs are either:
tree based - the entire document is read into memory as a tree structure for random access by the calling application
event based - the application registers to receive events as entities are encountered within the source document.
Both have advantages; the former (for example, DOM) allows for random access to the document, the latter (e.g. SAX) requires a small memory footprint and is typically much faster.
These two access metaphors can be thought of as polar opposites. A tree based API allows unlimited, random, access and manipulation, while an event based API is a 'one shot' pass through the source document.
StAX was designed as a median between these two opposites. In the StAX metaphor, the programmatic entry point is a cursor that represents a point within the document. The application moves the cursor forward - 'pulling' the information from the parser as it needs. This is different from an event based API - such as SAX - which 'pushes' data to the application - requiring the application to maintain state between events as necessary to keep track of location within the document.
StAX has its roots in a number of incompatible pull APIs for XML, most notably XMLPULL, the authors of which (Stefan Haustein and Aleksandr Slominski) collaborated with, amongst others BEA Systems, Oracle, Sun, Breeze Factor and James Clark.
Examples
From JSR-173 Specification• Final, V1.0 (used under fair use).
Quote:
The following Java API shows the main methods for reading XML in the cursor approach.
The video game FreeCol uses the StAX API and the Woodstox implementation as the XML parser for its game data.
See also
Competing and complementary ways to process XML in Java (ordered loosely based on initial date of introduction):
DOM Document Object Model is the first standardized, language/platform-independent tree-based xml processing model. (note: there are also alternate Java tree models like JDOM, Dom4j, XOM).
JAXB Java XML Binding API: works on top of another parser (usually streaming parser), binds contained data to/from Java objects.
Javolution provides a real-time StAX-like implementation which does not force object creation (e.g. String) and has smaller effect on memory footprint/garbage collection (Note: to reduce object creation, most StAX implementations maintain lookup tables to retrieve and reuse frequently used String objects).
StAX-Utils Provides a set of utility classes that make it easy for developers to integrate StAX into their existing XML processing applications.
StAX-Utils includes classes to provide XML file indenting and formatting.
StaxMate is a light-weight framework that builds on top of Stax API and provides more convenient nested/filtered cursor for reading xml, and nested outputters for writing xml.