下你所需,载你所想!
汇集开发技术源码资料

QT的TCP服务器DEMO

:6.313KB :1 :2022-08-30 17:30:32

部分简介

QT的TCP服务器DEMO如果开发者对于本文件有需要的可以参考。创建TCP服务器,等待客户端连接,接收到客户端后回复消息。
MyTcpServer::MyTcpServer(QWidget *parent) :

QMainWindow(parent),
ui(new Ui::MyTcpServer)
{
ui->setupUi(this);
tcpServer = new QTcpServer(this);
ui->edtIP->setText(QNetworkInterface().allAddresses().at(1).toString()); //获取本地IP
ui->btnConnect->setEnabled(true);
ui->btnSend->setEnabled(false);
connect(tcpServer, SIGNAL(newConnection()), this, SLOT(NewConnectionSlot()));
}

QT的TCP服务器DEMO

热门推荐

相关文章