2字节十六进制浮点数 qt_Qt 中十六进制字节流转换为Base64编码

该博客介绍了如何在Qt中使用QByteArray类进行16进制字节流与Base64编码之间的转换。通过示例代码展示了将16进制数据转换为Base64编码,以及将Base64编码还原回16进制字节流的过程,这对于网络通信中的数据编码和解码至关重要。
摘要由CSDN通过智能技术生成

在Qt中,在网络通信时,有时需要将16进制字节流转换为Base64编码传输,在Qt的QByteArray类中,提供了与Base64转换的接口:

//16进制字节流转为Base64

QByteArray toBase64(Base64Options options) const;

QByteArray toBase64() const; // ### Qt6 merge with previous

//Base64转为16进制字节流

static QByteArray fromBase64(const QByteArray &base64, Base64Options options);

static QByteArray fromBase64(const QByteArray &base64); // ### Qt6 merge with previous

测试代码如下:

#include

#include

#include

int main(int argc, char *argv[])

{

QCoreApplication a(argc, argv);

char hexData[10]={0x1, 0x2, 0x3,0x4, 0x5,0x6,0x7,0x8,0x9,0xa};

QByteArray data = QByteArray(hexData, 10);

//hex数据转换为base64编码,转换后赋值给base64Str

QString base64Str = data.toBase64();

//QByteArray::toHex(); //是将十六进制数据,按照其字面值转换为字符串,比如: 0x12-->0x31 0x32,以字符串输出时就是“12”

qDebug()<

QByteArray decBase64 = QByteArray::fromBase64(QString(base64Str).toLatin1());

qDebug()<

return a.exec();

}

执行结果:

hexData: "0102030405060708090a" , base64: "AQIDBAUGBwgJCg=="

hexData: "0102030405060708090a"

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值