CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2001
    Location
    LoS AnGeLeS
    Posts
    251

    Binary data in XML file

    Hi,

    Does anyone know if it is possible to store binary data such as an .exe or .jpg file into an XML document using DOM under C++?
    If so, how????

  2. #2
    Join Date
    Aug 2001
    Location
    Russia, Moscow
    Posts
    26
    Hi.

    Yes it's possible.
    But XML is always text. And you need to represent your binary data in the text form. For example in HEX.

    Good luck
    Denis.

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