使用 C++ 解码 Adobe Flex Base64encoder 的输出
我用 C++ 开发了 Web 服务,并实现了提供 Base 64 编码字符串来发送带有其他元数据的文件的功能。虽然当编码数据是文本文件时我已成功解码字符串,但图像和其他二进制文件无法正确解码。
您能否向我指出与 Adobe Flex Base64encoder 配合使用的 C++ 库或 Base64 解码实现? Flex 编码/解码实现什么 RFC?
I've developed web services in C++ and have implemented the ability to provide a base 64 encoded string to send files with other meta data. While I have successfully decoded the string when the encoded data is a text file, images and other binary files are not decoding correctly.
Can you point me to a C++ library or implementation of base64 decode that works with Adobe Flex Base64encoder? What RFC does the Flex encode/decode implement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于遇到相同问题的用户:
在 Flex 中设置“encoder.useNewLines = false”并使用 处的 base64 库http://code.google.com/p/stringencoders/。
For those with the same issue:
Set "encoder.useNewLines = false" in Flex and use the base64 library at http://code.google.com/p/stringencoders/.