【Qt】QTcpServer/QTcpSocket通信

这里写目录标题

1.pro文件

cpp 复制代码
QT       += network

2.服务器

h文件

cpp 复制代码
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QTcpServer>
#include <QTcpSocket>

QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    MainWindow(QWidget *parent = nullptr);
    ~MainWindow();

private slots:
    void on_setListenButton_clicked();
    void on_sendMsgButton_clicked();

private:
    Ui::MainWindow *ui;
    QTcpServer *tcpServer;
    QTcpSocket *tcpSocket;
};
#endif // MAINWINDOW_H

cpp

cpp 复制代码
#include "mainwindow.h"
#include "ui_mainwindow.h"


MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
    , ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    ui->portEdit->setText("8899");
    setWindowTitle("服务器");

    // 创建监听服务器的对象
    tcpServer = new QTcpServer(this);
    connect(tcpServer,&QTcpServer::newConnection,this, [=](){
        tcpSocket = tcpServer->nextPendingConnection(); // 有新的客户端连接,得到一个用于通信的服务器对象
        ui->statusLabel->setText("已连接");

        // 检测是否可以接收数据
        connect(tcpSocket,&QTcpSocket::readyRead,this,[=](){
            QByteArray data = tcpSocket->readAll(); // data为client发来的数据
            ui->recordEdit->append("客户端:" + data);
        });

        connect(tcpSocket,&QTcpSocket::disconnected,this,[=](){
            tcpSocket->close();
            tcpSocket->deleteLater();
            ui->statusLabel->setText("未连接");
            ui->setListenButton->setDisabled(false);
        });
    });
}

MainWindow::~MainWindow()
{
    delete ui;
}

void MainWindow::on_setListenButton_clicked()
{
    unsigned short port = ui->portEdit->text().toUShort();
    tcpServer->listen(QHostAddress::Any, port); // 监听port
    ui->setListenButton->setDisabled(true);
}

void MainWindow::on_sendMsgButton_clicked()
{
    QString msg = ui->messageEdit->toPlainText();
    tcpSocket->write(msg.toUtf8());
    ui->recordEdit->append("服务器:" + msg);
}

3.客户端

h文件

cpp 复制代码
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QTcpSocket>
#include <QHostAddress>

QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    MainWindow(QWidget *parent = nullptr);
    ~MainWindow();

private slots:
    void on_sendMsgButton_clicked();
    void on_connectButton_clicked();
    void on_disconnectButton_clicked();

private:
    Ui::MainWindow *ui;
    QTcpSocket *tcpSocket;
};
#endif // MAINWINDOW_H

cpp

cpp 复制代码
#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
    , ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    ui->portEdit->setText("8899");
    ui->ipEdit->setText("127.0.0.1");
    setWindowTitle("客户端");
    ui->disconnectButton->setDisabled(true);

    // 创建监听服务器的对象
    tcpSocket = new QTcpSocket();

    connect(tcpSocket,&QTcpSocket::readyRead,this,[=](){
        QByteArray data = tcpSocket->readAll(); // data为client发来的数据
        ui->recordEdit->append("服务器:" + data);
    });

    connect(tcpSocket,&QTcpSocket::disconnected, this, [=](){
        tcpSocket->close();
        tcpSocket->deleteLater();
        ui->statusLabel->setText("未连接");
        ui->recordEdit->append("断开连接");
        ui->connectButton->setDisabled(false);
        ui->disconnectButton->setEnabled(false);
    });

    connect(tcpSocket,&QTcpSocket::connected, this, [=](){
        ui->statusLabel->setText("已连接");
        ui->recordEdit->append("连接成功");
        ui->connectButton->setDisabled(true);
        ui->disconnectButton->setEnabled(true);
    });

}

MainWindow::~MainWindow()
{
    delete ui;
}

void MainWindow::on_sendMsgButton_clicked()
{
    QString msg = ui->messageEdit->toPlainText();
    tcpSocket->write(msg.toUtf8());
    ui->recordEdit->append("客户端:" + msg);
}

void MainWindow::on_connectButton_clicked()
{
    QString ip = ui->ipEdit->text();
    unsigned short port = ui->portEdit->text().toUShort();
    tcpSocket->connectToHost(QHostAddress(ip), port);
}

void MainWindow::on_disconnectButton_clicked()
{
    tcpSocket->close();
    ui->connectButton->setDisabled(false);
    ui->disconnectButton->setEnabled(false);
}
相关推荐
锦亦之22339 小时前
QT+OSG+OSG-earth如何在窗口显示一个地球
开发语言·qt
柳鲲鹏12 小时前
编译成功!QT/6.7.2/Creator编译Windows64 MySQL驱动(MinGW版)
开发语言·qt·mysql
三玖诶12 小时前
如何在 Qt 的 QListWidget 中逐行添加和显示数据
开发语言·qt
阳光开朗_大男孩儿18 小时前
DBUS属性原理
linux·服务器·前端·数据库·qt
Alphapeople19 小时前
Qt Modbus
开发语言·qt
竹林海中敲代码19 小时前
Qt Creator 集成开发环境 常见问题
qt·qt工具常见问题
竹林海中敲代码1 天前
Qt安卓开发连接手机调试(红米K60为例)
android·qt·智能手机
长沙红胖子Qt1 天前
关于 Qt运行加载内存较大崩溃添加扩大运行内存 的解决方法
开发语言·qt·qt扩大运行内存
gopher95111 天前
qt相关面试题
开发语言·qt·面试
三玖诶1 天前
在 Qt 中使用 QLabel 设置 GIF 动态背景
开发语言·qt·命令模式