qt在windows下的udp通信(最简单)

时间:2023-03-09 17:54:45
qt在windows下的udp通信(最简单)

qt编程:windows下的udp通信

本文博客链接:http://blog.****.net/jdh99,作者:jdh,转载请注明.

环境:

主机:win7

开发环境:qt

功能:

用udp进行收发通信

界面:

qt在windows下的udp通信(最简单)

源代码:

LssHost.pro:

  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2013-09-22T09:36:44
  4. #
  5. #-------------------------------------------------
  6. QT       += core gui
  7. QT       += network
  8. TARGET = LssHost
  9. TEMPLATE = app
  10. SOURCES += main.cpp\
  11. mainwindow.cpp
  12. HEADERS  += mainwindow.h
  13. FORMS    += mainwindow.ui

mainwindows.h

  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. #include <QtNetwork/QUdpSocket>
  5. namespace Ui {
  6. class MainWindow;
  7. }
  8. class MainWindow : public QMainWindow
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit MainWindow(QWidget *parent = 0);
  13. ~MainWindow();
  14. private:
  15. Ui::MainWindow *ui;
  16. QUdpSocket *udp_socket_tx;
  17. QUdpSocket *udp_socket_rx;
  18. QHostAddress Ip_Tx;
  19. int Port_Tx;
  20. private slots:
  21. void on_btn_cfg_clicked();
  22. void on_btn_tx_clicked();
  23. void rx_udp();
  24. };
  25. #endif // MAINWINDOW_H

mainwindows.cpp:

  1. #include "mainwindow.h"
  2. #include "ui_mainwindow.h"
  3. MainWindow::MainWindow(QWidget *parent) :
  4. QMainWindow(parent),
  5. ui(new Ui::MainWindow)
  6. {
  7. ui->setupUi(this);
  8. udp_socket_tx = new QUdpSocket(this);
  9. udp_socket_rx = new QUdpSocket(this);
  10. ui->btn_tx->setEnabled(false);
  11. }
  12. MainWindow::~MainWindow()
  13. {
  14. delete ui;
  15. }
  16. //接收udp数据
  17. void MainWindow::rx_udp()
  18. {
  19. qDebug() << "rx";
  20. while (udp_socket_rx->hasPendingDatagrams())
  21. {
  22. QByteArray datagram;
  23. datagram.resize(udp_socket_rx->pendingDatagramSize());
  24. QHostAddress sender;
  25. quint16 senderPort;
  26. udp_socket_rx->readDatagram(datagram.data(), datagram.size(),
  27. &sender, &senderPort);
  28. ui->txt_rx->append(datagram);
  29. }
  30. }
  31. //发送按键
  32. void MainWindow::on_btn_tx_clicked()
  33. {
  34. QByteArray datagram = ui->txt_tx->toPlainText().toAscii();
  35. udp_socket_tx->writeDatagram(datagram, datagram.size(), Ip_Tx, Port_Tx);
  36. }
  37. //配置按键
  38. void MainWindow::on_btn_cfg_clicked()
  39. {
  40. bool ok;
  41. int port_rx = 0;
  42. //获得发送IP和端口
  43. Ip_Tx = QHostAddress(ui->txt_ip->text());
  44. Port_Tx = ui->txt_port_tx->text().toInt(&ok);
  45. //获得接收端口
  46. port_rx = ui->txt_port_rx->text().toInt(&ok);
  47. udp_socket_rx->bind(QHostAddress::Any, port_rx);
  48. //绑定接收信号槽
  49. connect(udp_socket_rx, SIGNAL(readyRead()),this, SLOT(rx_udp()));
  50. ui->btn_tx->setEnabled(true);
  51. }

main.cpp:

    1. #include <QtGui/QApplication>
    2. #include "mainwindow.h"
    3. int main(int argc, char *argv[])
    4. {
    5. QApplication a(argc, argv);
    6. MainWindow w;
    7. w.show();
    8. return a.exec();
    9. }

http://blog.****.net/jdh99/article/details/11892725