QT socket 通信每次通信出现空白符的问题

    client2=new QTcpSocket(this);
    client2->abort();//add this
    client2->connectToHost("127.0.0.1",8989);
  • 解决办法 加上abort()函数即可; 另外,新的QTcpSocket对象不能在mainWindow中定义。
    -官方API说明:

void QAbstractSocket::abort()

  • Aborts the current connection and resets the socket. Unlike disconnectFromHost(), this function immediately closes the socket, discarding any pending data in the write buffer.
  • 中止当前连接并重置套接字。与disconnectFromHost)不同,此函数立即关闭套接字,丢弃写缓冲区中的任何挂起数据。

你可能感兴趣的:(QT socket 通信每次通信出现空白符的问题)