博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Qt的Socket数据通讯的一个样例。
阅读量:5919 次
发布时间:2019-06-19

本文共 3109 字,大约阅读时间需要 10 分钟。

QTcpServer类 用来侦听port ,获取QTcpSocket.

QTcpSocket有  connected的信号(已经连接),还有readyread()信号,表示已经有数据发过来了。准备读取。

  若要关闭 当前连接仅仅须要 调用 qtcpsocket::close();就关闭了当前连接

以下有两个样例

   server端

用的是控制台程序(QT) 当用户 发送数据过来 就cout显示。然后就write一个 I Love You的字符串 返回到client。然后close断开连接

client

  用的书图形界面。一个输入框 输入数据 然后发送,最后 QMessagebox显示server返回消息

=======================

server端(三个文件)

#ifndef MYSERVER_H#define MYSERVER_H#include
#include
#include
#include
class myserver : public QTcpServer{    Q_OBJECTpublic:    QTcpSocket * socket;    QTcpServer *server;    myserver();private slots:    void getData();    void newconnectslot();};#endif // MYSERVER_H#include "myserver.h"#include
#include
#include
myserver::myserver(){    this->socket=new QTcpSocket;    this->server=new QTcpServer;    if(this->server->listen(QHostAddress::Any,520))    {        std::cout<<"bind port 520 successful."<
server,SIGNAL(newConnection()),this,SLOT(newconnectslot()));}void myserver::newconnectslot(){    this->socket=this->server->nextPendingConnection();    connect(this->socket,SIGNAL(readyRead()),this,SLOT(getData()));}void myserver::getData(){    QByteArray by=this->socket->readAll();    QDataStream ds(by);    QString x;    ds>>x;    QByteArray ba = x.toLatin1();    char * p=ba.data();    std::cout<

<

write("I love you");//返回给client    this->socket->close();//断开连接}#include
#include
#include"myserver.h"#include
int main(int argc, char *argv[]){    QCoreApplication a(argc, argv);    std::cout<<"--Server initialized By HanHan--"<

client(三个文件)
#ifndef MAINWINDOW_H#define MAINWINDOW_H#include 
#include
#include
#include
#include
namespace Ui {class MainWindow;}class MainWindow : public QMainWindow{    Q_OBJECTpublic:    QTcpSocket * socket;    explicit MainWindow(QWidget *parent = 0);    ~MainWindow();private slots:    void connnectslot();    void on_btn_send_clicked();    void readyslot();private:    Ui::MainWindow *ui;};#endif // MAINWINDOW_H
 
#include "mainwindow.h"#include "ui_mainwindow.h"#include
#include
MainWindow::MainWindow(QWidget *parent) :    QMainWindow(parent),    ui(new Ui::MainWindow){    ui->setupUi(this);    this->socket=new QTcpSocket;}MainWindow::~MainWindow(){    delete ui;}void MainWindow::on_btn_send_clicked(){    QHostAddress address("127.0.0.1");    this->socket->connectToHost(address,520);    connect(this->socket,SIGNAL(connected()),this,SLOT(connnectslot()));    connect(this->socket,SIGNAL(readyRead()),this,SLOT(readyslot()));//接收发来的数据}void MainWindow::connnectslot(){     QString data=this->ui->data_edit->toPlainText();     QByteArray array;     QDataStream ds(&array,QIODevice::WriteOnly);     ds<
socket->write(array);}
 
void MainWindow::readyslot(){    QString x=this->socket->readAll();    QMessageBox::about(this,"x",x);}#include "mainwindow.h"#include 
int main(int argc, char *argv[]){    QApplication a(argc, argv);    MainWindow w;    w.show();    return a.exec();}

执行截图:

n
 
 

你可能感兴趣的文章
多云部署就是云高可用方案了吗?
查看>>
哪个城市美女最多?OPPO R11开启“谁是拍照King·仲夏之梦”活动
查看>>
程序员写了这5000行代码,应聘开口要20K,HR会给吗?
查看>>
阿里天猫小镇的实质就是为了圈地!
查看>>
第二代NumPy?阿里开源超大规模矩阵计算框架Mars
查看>>
字符串拼接引发的BUG
查看>>
RocketMQ源码解析:定时消息与消息重试
查看>>
Java中atomic包中的原子操作类总结
查看>>
攻击JavaWeb应用[4]-SQL注入[2]
查看>>
Android 源码分析(一)项目构建过程
查看>>
iOS 网络编程(一)TCP IP协议简介
查看>>
React在线编辑简历
查看>>
七牛大数据平台的演进
查看>>
可能是全网最全的移动直播 trouble shooting 手册(6)——马赛克严重
查看>>
iOS开发笔记(四):frame与bounds的区别详解
查看>>
iOS--collectionView简单瀑布流的实现
查看>>
我想,我需要试试
查看>>
app异常处理
查看>>
Redis 中三种特殊的数据类型
查看>>
Python篇-绘图
查看>>