我正在尝试使用 Qt 编写一个聊天程序。它已经完成了一半,但它有一些问题。
首先,当我想将 lineedit 中的书面消息发送给客户时,我得到一个错误。它是一个QString
,但writeDatagram
唯一发送一个QByteArray
。我用谷歌搜索了它,有一些方法可以转换QString
为QByteArray
,但我正在寻找更好的解决方案。我想我应该使用,connectToHost()
但不工作。read()
write()
第二个也是主要问题是我无法连续发送和接收消息!显然这个还没有发生,但我知道它有问题,因为我已经在 Qt 控制台上对其进行了测试,但它也没有在那里工作。
我是 GUI 和 Socket 编程的新手,因此在发布此主题之前我进行了很多搜索。
更新:我的第一个问题解决了,但现在 UDP 数据包无法发送和接收,更不用说像聊天应用程序一样工作了。
更新:我发现了问题所在并解决了。代码需要两个QUdpSocket
对象。我还更新了代码。它现在功能齐全。如果您有其他意见,我很想听听他们,否则我有我的答案。
服务器:
#include "schat.h"
#include "ui_schat.h"
schat::schat(QWidget *parent) :
QWidget(parent),
ui(new Ui::schat)
{
ui->setupUi(this);
socketServerc=new QUdpSocket(this);
socketServer=new QUdpSocket(this);
socketServer->bind(QHostAddress::LocalHost, 8001);
connect(socketServer,SIGNAL(readyRead()),this,SLOT(readPendingDatagrams()));
}
schat::~schat()
{
delete ui;
}
void schat::on_sendButton_clicked()
{
QString word=ui->lineEdit->text();
ui->textBrowser->append(word);
QByteArray buffer;
buffer=word.toUtf8();
QHostAddress sender;
quint16 senderPort;
socketServerc->writeDatagram(buffer.data(), QHostAddress::LocalHost, 7000 );
}
void schat::readPendingDatagrams()
{
while (socketServer->hasPendingDatagrams()) {
QByteArray buffer;
buffer.resize(socketServer->pendingDatagramSize());
QHostAddress sender;
quint16 senderPort;
socketServer->readDatagram(buffer.data(), buffer.size(),&sender, &senderPort);
ui->textBrowser->append(buffer.data());
}
}
客户:
#include "uchat.h"
#include "ui_uchat.h"
uchat::uchat(QWidget *parent) :
QWidget(parent),
ui(new Ui::uchat)
{
ui->setupUi(this);
clientSocket=new QUdpSocket(this);
clientSocketc=new QUdpSocket(this);
clientSocketc->bind(QHostAddress::LocalHost, 7000);
connect(clientSocketc,SIGNAL(readyRead()),this,SLOT(readPendingDatagrams()));
}
uchat::~uchat()
{
delete ui;
}
void uchat::on_sendButton_clicked()
{
QString word=ui->lineEdit->text();
ui->textBrowser->append(word);
QByteArray buffer;
buffer.resize(clientSocket->pendingDatagramSize());
QHostAddress sender;
quint16 senderPort;
buffer=word.toUtf8();
clientSocket->writeDatagram(buffer.data(), QHostAddress::LocalHost, 8001 );
}
void uchat::readPendingDatagrams()
{
while (clientSocketc->hasPendingDatagrams()) {
QByteArray buffer;
buffer.resize(clientSocketc->pendingDatagramSize());
QHostAddress sender;
quint16 senderPort;
clientSocketc->readDatagram(buffer.data(), buffer.size(),&sender, &senderPort);
ui->textBrowser->append(buffer.data());
}
}