Can you suggest some of the best XML Parser for C ?
|
2
|
|||
|
|
|
Two of the most widely used parsers are Expat and libxml. If you are okay with using C++, there's Xerces-C++ too. |
||
|
|
|
|
Expat is pretty decent. It's hard to give good recommendations without more information though. |
||
|
|
|
|
You can try ezxml -- it's a lightweight parser written entirely in C. For C++ you can check out TinyXML++ |
||
|
|
|
|
How about one written in pure assembler :-) Don't forget to check out the benchmarks. |
||||||||
|
|
|
Could you give some indication of what platforms you are writing for? This should weigh heavily on what is 'best'. You might find a super 'xml-foo' library that does not ship commonly on most systems by default .. while its great, the lack of the library might prevent (or at least) annoy users. Mostly, I use libxml2 .. because its standard or easy to install on the platforms that I target. As you see, 'best' is also determined by the library being available on your target platforms. |
||
|
|
|
|
On Windows, it's native with Win32 api... |
||
|
|
|
Two examples with expat and libxml2. The second one is, IMHO, much easier to use since it creates a tree in memory, a data structure which is easy to work with. expat, on the other hand, does not build anything (you have to do it yourself), it just allows you to call handlers at specific events during the parsing. But expat may be faster (I didn't measure). With expat, reading a XML file and displaying the elements indented:
With libxml2, a program which displays the name of the root element and the names of its children:
|
||
|
|
|
|
http://www.minixml.org is also pretty good. Small and just ANSI C. |
||
|
|
|
|
My personal preference is libxml2. It's very easy to use but I never bothered to benchmark it, as I've only used it for configuration file parsing. |
||
|
|
