0

I have a xml file and I need to build a program that read the xml in c++, is there any good xml parser api in c++ to do that?

  • 1
    Possible duplicate of [Boost and XML (c++)](http://stackoverflow.com/questions/1042855/boost-and-xml-c) – 101010 Nov 13 '15 at 09:35
  • as mentioned in the comment above. could be a duplicate of http://stackoverflow.com/questions/1042855/boost-and-xml-c – Tejus Prasad Nov 13 '15 at 09:44
  • Possible duplicate of [Read Write XML File In C++](http://stackoverflow.com/questions/5415788/read-write-xml-file-in-c) – Hazem Abdullah Nov 13 '15 at 11:20

2 Answers2

1

Xerces-C++ is a validating XML parser written in a portable subset of C++. Xerces-C++ makes it easy to give your application the ability to read and write XML data

http://xerces.apache.org/xerces-c/

Hazem Abdullah
  • 1,837
  • 4
  • 23
  • 41
0

You can see a lot of advices here What is the best open XML parser for C++? By the way, if you are developing with qt, you can use it's API for XML like QXmlSimpleReader.

Community
  • 1
  • 1
V. Kravchenko
  • 1,859
  • 10
  • 12