We use SAX to parse XML because it does not require the entire XML document to be read into memory in order to parse a single value. I read many articles that insisted SAX can only be used to parse/decode XML and not create it. Is this true?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
No, it isn't true, you can encode XML to any Writer in Java using something similar to:
|
|||
|
|
The SAX handler interfaces were designed to be easy to implement. It's easy to write a class with similar (perhaps wrapping a SAX interface) to make it easy to call - chaining, remembering which element to close, easier attributes, etc. |
|||
|
|
|
see http://code.google.com/p/jlibs/wiki/XMLDocument It supports creating xml document using SAX. both memory efficient and user friendly api |
|||
|
|