将字节转换为 XML 合法文本
我必须将图像文件的字节存储在由另一个程序读取的 XML 文件中...问题是,如果我将其仅作为普通字节注入,则最终程序会出现错误(大概是因为它包含非- 合法的 XML 字符)。如何将字节转换为 XML 可以合法读取的内容?此时我真的没有其他选择。我必须将图像文件作为字节注入(特别是 .bmp 文件)。
I have to store the bytes of a image file inside of an XML file that is read by another program... The problem is, if I inject it as just plain bytes, the end-program has an error (presumably because it contains non-legal XML characters). How can I convert bytes into something that XML can legally read? I really have no other options at this point. I have to inject the image file as bytes (specifically a .bmp file).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将字节数据转换为Base64 并嵌入它。
Convert the byte data to Base64 and embed that.