I've used the StAX API in Java quite a bit, and find it quite a clean way of dealing with XML files. Is there any equivalent library I could use for performing similar processing in C?
A:
libxml is a heavily used and documented XML library for C, which provides a SAX API. Expat is another, but in my experience is not as well documented.
John Millikin
2008-09-01 04:22:00
A:
I have used Expat pretty extensively - I like it for its simplicity and small footprint.
Brian Stewart
2008-09-01 04:24:19
A:
OJW
2009-01-21 13:52:02
A:
Huh? No, Expat does not do Stax, and code example confirms this.
Perhaps you meant it does something bit like SAX?
StaxMan
2009-02-10 20:45:21