博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Qt Socket简单通信
阅读量:6734 次
发布时间:2019-06-25

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

hot3.png

时间:2013 年 03 月 12 日 分类:  

目录

最近要用到Qt的Socket部分,网上关于这部分的资料都比较复杂,我在这总结一下,把Socket的主要部分提取出来,实现TCP和UDP的简单通信。

1.UDP通信

UDP没有特定的server端和client端,简单来说就是向特定的ip发送报文,因此我把它分为发送端和接收端。 注意:在.pro文件中要添加QT += network,否则无法使用Qt的网络功能

1.1.UDP发送端

#include 
QUdpSocket *sender;sender = new QUdpSocket(this);QByteArray datagram = “hello world!”;//UDP广播sender->writeDatagram(datagram.data(),datagram.size(),QHostAddress::Broadcast,6665);//向特定IP发送QHostAddress serverAddress = QHostAddress("10.21.11.66");sender->writeDatagram(datagram.data(), datagram.size(),serverAddress, 6665);/* writeDatagram函数原型,发送成功返回字节数,否则-1qint64 writeDatagram(const char *data,qint64 size,const QHostAddress &address,quint16 port)qint64 writeDatagram(const QByteArray &datagram,const QHostAddress &host,quint16 port)*/

1.2.UDP接收端

#include 
QUdpSocket *receiver;//信号槽private slots:      void readPendingDatagrams(); receiver = new QUdpSocket(this);receiver->bind(QHostAddress::LocalHost, 6665);connect(receiver, SIGNAL(readyRead()),this, SLOT(readPendingDatagrams()));void readPendingDatagrams() {     while (receiver->hasPendingDatagrams()) {         QByteArray datagram;         datagram.resize(receiver->pendingDatagramSize());         receiver->readDatagram(datagram.data(), datagram.size());         //数据接收在datagram里/* readDatagram 函数原型qint64 readDatagram(char *data,qint64 maxSize,QHostAddress *address=0,quint16 *port=0)*/     } }

2.TCP通信

TCP的话要复杂点,必须先建立连接才能传输数据,分为server端和client端。

2.1.TCP client端

#include 
QTcpSocket *client;char *data="hello qt!";client = new QTcpSocket(this);client->connectToHost(QHostAddress("10.21.11.66"), 6665);client->write(data);

2.2.TCP server端

#include 
QTcpServer *server;QTcpSocket *clientConnection;server = new QTcpServer();server->listen(QHostAddress::Any, 6665);connect(server, SIGNAL(newConnection()), this, SLOT(acceptConnection()));void acceptConnection(){    clientConnection = server->nextPendingConnection();    connect(clientConnection, SIGNAL(readyRead()), this, SLOT(readClient()));}void readClient(){    QString str = clientConnection->readAll();    //或者    char buf[1024];    clientConnection->read(buf,1024);}

转载于:https://my.oschina.net/floristgao/blog/300668

你可能感兴趣的文章
ssm jQuery 获取checkbox选中的值form表单提交例子
查看>>
JavaEE(17) - JPA查询API和JPQL
查看>>
简单方法编写在群晖ds218play上运行的sh
查看>>
ubuntu16.04下ftp服务器的安装与配置
查看>>
机器学习模型评估指标汇总
查看>>
C语言通过timeval结构设置周期
查看>>
LeetCode155-最小栈(优先队列/巧妙的解法)
查看>>
【转】删除cookie
查看>>
木其工作室代写程序 [原]当 IDENTITY_INSERT 设置为 OFF 时,不能为表 'TB_TABLENAME' 中的标识列插入显式值。...
查看>>
[洛谷P2161][SHOI2009]会场预约
查看>>
'用户 'sa' 登录失败。该用户与可信 SQL Server 连接无关联,做JSP项目连接数据库 ....
查看>>
javascript中substring和substr方法
查看>>
C# FTPHelper帮助类
查看>>
以色列之光
查看>>
Photo1
查看>>
学习方法及笔记的总结
查看>>
AHK GUI开发示例
查看>>
【JS温故知新】之——给力的鼠标坐标位置获取(转)
查看>>
MAC OS环境下搭建基于Python语言的appium自动化测试环境
查看>>
开发提测标准
查看>>