CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Thread: XML parser C++

  1. #1
    Join Date
    Sep 2003
    Posts
    54

    XML parser C++

    How can I read/write XML files using C++ on Linux RedHat platform? Is there any C++ parser to manage XML files? Where can I find it?

    Thanks!

  2. #2
    Join Date
    Aug 2001
    Location
    Germany
    Posts
    1,384

    Re: XML parser C++

    Quote Originally Posted by bech
    How can I read/write XML files using C++ on Linux RedHat platform? Is there any C++ parser to manage XML files? Where can I find it?

    Thanks!
    Xerces is C++ DOM parser (Tree-based). There is another XML parser Expat written in plain C, its a SAX parser (Event-based). You can find it here. Both are open-source.
    Hope this helps,
    Regards,
    Usman.

  3. #3
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Re: XML parser C++

    Simply use a search engine such as Google and look for "XML parser C++"...

  4. #4
    Join Date
    Dec 2003
    Location
    Middletown, DE
    Posts
    67

    Re: XML parser C++

    My preference is libxml, which is probably already bundled with your Red Hat installation.

  5. #5
    Join Date
    Mar 2004
    Posts
    137

    Re: XML parser C++

    As far as I know even Expat is bundled with some of Linux flavors.

    bashish

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured