CrazyC
CrazyC

Reputation: 1896

Read XML on LINUX

I have requirement where we have to read a small XML file on Linux. Our application is in C++ and I like to use any light weight XML library. Please suggest me the library. Thanks

Upvotes: 6

Views: 6635

Answers (4)

Keith
Keith

Reputation: 43024

There is xerces-c for that. It's complete, but I don't know if you will find it small enough. Your question is relative to what?

Upvotes: 0

BЈовић
BЈовић

Reputation: 64223

This xml parser is good

Upvotes: 1

register
register

Reputation: 409

Have a look also at TinyXml (http://sourceforge.net/projects/tinyxml). It is extremely lightweight and for this reason it is used also in mobile and game programming. The API is minimal though so you have to evaluate if it fully satisfy your needs.

Upvotes: 1

anubhava
anubhava

Reputation: 785276

You can Try pugixml Light-weight, simple and fast XML parser for C++

As a 2nd option look at TinyXML

Upvotes: 2

Related Questions