qt中文转字节_QT字符编码转换,可用于中文内码传输

本文介绍了在QT中进行中文字符编码转换的方法,包括字符串转内码、内码转字符串、字符串转Unicode码以及Unicode码转字符串的过程,适用于串口、TCP、UDP等通信场景中的中文数据传输。
摘要由CSDN通过智能技术生成

串口、TCP、UDP传输中文字符时,先将字符串转内码。客户端接收到数据后,将内码转为字符串就OK了

QByteArray CommonFunction::strToInterCode(constQString &str)//字符串转内码

{

QString strName = str.toLocal8Bit();

QByteArray code;

code.append (strName);

while(code.count()<8)

{

code.append (QByteArray::fromHex ("20"));

}

qDebug ()<

return code;

}

//内码转字符串,要求为双字节数

QString CommonFunction::interCodeToStr(const QByteArray &data)

{

QString str;

QByteArray temp;

for(int i= 0;i

{

if(!(data[i] == 0x20 && data[i+1] == 0x20))

{

temp.append (data[i]);

temp.append (data[i+1]);

}

}

str = QString::fromLocal8Bit(temp);

qDebug ()<< "intercode

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值