C++如何将宽字符串转换为base64?
将宽字符串转换为 Base64 的最佳方法是什么?
What is the best way to convert wide string to base64?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
将宽字符串转换为 Base64 的最佳方法是什么?
What is the best way to convert wide string to base64?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
八位字节(8 位符号)-> Base64(6 位符号)转换适用于字节,而不是字符,因此它的工作方式与字符串编码无关。
需要明确的是:Base64 不是字符编码。发送方和接收方需要就字符编码(ASCII、UTF-8、UTF-16、UCS-2 等)以及传输方法(Base64、gzip 等)达成一致。
Octet (8 bit symbols) -> Base64 (6 bit symbols) conversion works on bytes, not characters, so it works the same way independent of your string encoding.
To be clear: Base64 is not a character encoding. Sender and receiver need to agree on the character encoding (ASCII, UTF-8, UTF-16, UCS-2, etc) as well as the transport method (Base64, gzip, etc).
要将某些数据编码为 Base64,您可以使用 Base64 类Xerces 库。它可能如下所示:
To encode some data to base64 you can use Base64 class from the Xerces library. It could look like the following:
如果您将 Visual C++ 与 MFC 一起使用,则已经有一个库可以执行此操作。查看
Base64Encode
和Base64Decode
。If you are using Visual C++ with MFC, there is already a library to do this. Check out
Base64Encode
andBase64Decode
.