Any efficient XML parser for C++?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • cutecutemouse

    Any efficient XML parser for C++?

    I'm using TinyXML right now and found it not enough efficient to
    process large files because it should initialize a new instance and
    save it to file while creating a new XML node.

    Thanks in advance.
  • ToMo

    #2
    Re: Any efficient XML parser for C++?

    cutecutemouse wrote:
    I'm using TinyXML right now and found it not enough efficient to
    process large files because it should initialize a new instance and
    save it to file while creating a new XML node.
    Xerces?
    --
    ToMo

    Comment

    • anon

      #3
      Re: Any efficient XML parser for C++?

      cutecutemouse wrote:
      I'm using TinyXML right now and found it not enough efficient to
      process large files because it should initialize a new instance and
      save it to file while creating a new XML node.
      >
      Thanks in advance.
      take a look at this:


      Comment

      • AnonMail2005@gmail.com

        #4
        Re: Any efficient XML parser for C++?

        On Jul 16, 6:10 am, cutecutemouse <plhal...@hotma il.comwrote:
        I'm using TinyXML right now and found it not enough efficient to
        process large files because it should initialize a new instance and
        save it to file while creating a new XML node.
        >
        Thanks in advance.
        We use a C++ wrapper around libxml. The wrapper is extremely thin and
        the underlying library is very efficient (at least for what we use it
        for).

        HTH

        Comment

        Working...