Light weight C++ SAX XML parser

前端 未结 3 1636
难免孤独
难免孤独 2021-02-04 11:24

I know of at least three light weight C++ XML parsers: RapidXML, TinyXML and PugiXML. However, all three use a DOM based interface (ie, they build their own in-memory representa

3条回答
  •  有刺的猬
    2021-02-04 12:12

    PugiXML and RapidXML do not have DOM conforming interfaces.. those API came with severe limitations on functionalities and conformance. You might want to investigate VTD-XML that is signifiantly more advanced than either DOM or SAX/Pull

提交回复
热议问题