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????
Printable View
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????
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