N
Noozer
From what I can find online, the most efficient way to store binary data in
an XML document is to use Base64 serialization. This results in a 25% waste
of storage space, since computers store data in 8 bit bytes (or even more
wasted when other codepages are considered).
Is there a more efficient way to store binary data within an XML document?
Perhaps a "8 bit character" codepage that contains 256 "real" characters,
and that would have a common base regardless of language or dialect?
I'm trying to figure out a method to store data, such as an music track,
with album art, lyrics and custom user data that still works well with the
XML model.
an XML document is to use Base64 serialization. This results in a 25% waste
of storage space, since computers store data in 8 bit bytes (or even more
wasted when other codepages are considered).
Is there a more efficient way to store binary data within an XML document?
Perhaps a "8 bit character" codepage that contains 256 "real" characters,
and that would have a common base regardless of language or dialect?
I'm trying to figure out a method to store data, such as an music track,
with album art, lyrics and custom user data that still works well with the
XML model.