QtcpServer:Qt如何获取python字符串来标记
Posted
技术标签:
【中文标题】QtcpServer:Qt如何获取python字符串来标记【英文标题】:QtcpServer: Qt how to get python string to label 【发布时间】:2017-07-04 20:09:12 【问题描述】:大家好,我使用 python 向 qt 发送字符串,但我不知道如何在标签上显示字符串,谁能帮助我??? 我的 mainwindow.cpp 是
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
ui->setupUi(this);
QTimer *timer=new QTimer(this);
connect(timer,SIGNAL(timeout()),this,SLOT(showTime()));
timer->start();
tcpServer.listen(QHostAddress::Any,42207);
//QByteArray Msg= tcpSocket->readAll();
readMessage();
void MainWindow::showTime()
QTime time=QTime::currentTime();
QString time_text=time.toString("hh:mm:ss");
ui->Digital_clock->setText(time_text);
QDateTime dateTime = QDateTime::currentDateTime();
QString datetimetext=dateTime.toString();
ui->date->setText(datetimetext);
void MainWindow::readMessage()
ui->receivedata_2->setText("no connection yet");
if(!tcpServer.listen(QHostAddress::Any,42207))
ui->receivedata_2->setText("waitting!");
//QByteArray Msg= tcpSocket->readAll();
每次我尝试放置 socket->readall() 时它都会在我调试时崩溃
【问题讨论】:
tcpSocket
是什么类型(虽然我猜是QTcpSocket*
)以及在哪里初始化它(应该是tcpServer.nextPendingConnection
返回的值)?
【参考方案1】:
套接字之间的连接不一定是顺序的,可以随时发生以便QtcpServer处理适当的信号,在创建新连接时我们必须使用信号newConnection
。
在连接到前一个信号的槽中,我们必须使用nextPendingConnection
,它通过套接字返回一个挂起的连接。
当有待处理的信息时,此套接字会发出readyRead
信号,并在该任务中获得所需的数据。
此外,当断开连接时,它会发出断开连接的信号,在那个插槽中,我们必须消除套接字。
mainwindow.h
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QTcpServer>
namespace Ui
class MainWindow;
class MainWindow : public QMainWindow
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void newConnection();
void readyRead();
void disconnected();
private:
Ui::MainWindow *ui;
QTcpServer* tcpServer;
;
#endif // MAINWINDOW_H
mainwindow.h
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
#include <QTcpSocket>
#include <QLabel>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
ui->setupUi(this);
tcpServer = new QTcpServer(this);
connect(tcpServer, &QTcpServer::newConnection, this, &MainWindow::newConnection);
if(!tcpServer->listen(QHostAddress::Any,42207))
qDebug() << "Server could not start";
else
qDebug() << "Server started!";
MainWindow::~MainWindow()
delete ui;
void MainWindow::newConnection()
QTcpSocket *socket = tcpServer->nextPendingConnection();
connect(socket, &QTcpSocket::readyRead, this, &MainWindow::readyRead);
connect(socket, &QTcpSocket::disconnected, this, &MainWindow::disconnected);
void MainWindow::readyRead()
QTcpSocket* socket = qobject_cast<QTcpSocket *>(sender());
ui->receivedata_2->setText(socket->readAll());
void MainWindow::disconnected()
sender()->deleteLater();
【讨论】:
非常感谢您的回复。我将代码放入qt,但似乎没有连接。我可以从 python 中读取说连接被拒绝以上是关于QtcpServer:Qt如何获取python字符串来标记的主要内容,如果未能解决你的问题,请参考以下文章
Qt基础之三十四:QTcpSocket和QTcpServer源码分析
Qt creator 找不到,QTcpServer 和 QTcpSocket