本文共 270 字,大约阅读时间需要 1 分钟。
用 qt发送数据是一定要用这种格式:
tcpSocket->write(msg.toUtf8().data(),strlen(msg.toUtf8().data()));
不能用:
QString msg="%"+username+"%"+tr("呅")+userpasswd+"%"+tr("海龙"); tcpSocket->write(msg.toUtf8().data(),msg.length());
不然服务端收的不完整导致出错
转载于:https://blog.51cto.com/haidragon/2093419