Python和PySide6实现分别实现tcp通信。

通用界面代码:ui.py

python 复制代码
#tcp通讯/ui.py
from PySide6.QtWidgets import *

class Window(QWidget):

    def __init__(self):
        super().__init__()
        self.init_ui()
    def init_ui(self):
        self.plainTextEdit = QPlainTextEdit(self)
        self.plainTextEdit.setGeometry(20,20,200,200)

    def add_str(self,meg:str):
        self.plainTextEdit.appendHtml(f"<p>{meg}</p>")
        scrollbar = self.plainTextEdit.verticalScrollBar()
        if scrollbar.isVisible():
            scrollbar.setSliderPosition(scrollbar.maximum())

Python实现TCP 服务端代码:

python 复制代码
import socket
import sys
import threading
from PySide6.QtWidgets import *
from ui import Window


class TCP_Server_Python:
    def __init__(self):
        self.ui = Window()
        self.ui.show()
        self.socket_thread = threading.Thread(target=self.do_job, daemon=True)
        self.socket_thread.start()
    def do_job(self):
        with socket.socket() as server:
            server.bind(('0.0.0.0',6002))
            server.listen(10)
            print("服务器已经启动。。。。。。。")
            conn, _server = server.accept()
            while True:
                print("已经连接")
                data = b''
                try:
                    data = conn.recv(1024)
                except Exception as e:
                    pass
                else:
                    if data == b'\x01':
                        print("关闭")
                        break
                    self.ui.add_str(data)





if __name__ == '__main__':

    # 创建一个应用程序实例
    app = QApplication(sys.argv)

    # 创建一个顶层窗口
    window = TCP_Server_Python()


    # 进入应用程序的主循环,等待事件处理
    sys.exit(app.exec())

Pyside6中QTcpSocket实现代码:

python 复制代码
import sys
from PySide6.QtWidgets import *
from PySide6.QtCore import *
from ui import Window
from PySide6.QtNetwork import QTcpServer,QHostAddress,QTcpSocket

class Qt_Tcp_Server:
    def __init__(self):
        self.ui = Window()
        self.ui.show()

        self.tcp_servet = QTcpServer()
        self.tcp_servet.listen(QHostAddress.SpecialAddress.Any,port=6002)
        self.ui.add_str("...服务器已经启动")
        self.tcp_servet.newConnection.connect(self.on_new_connection)#连接信号

    @Slot()
    def on_new_connection(self):
        '''新的连接槽函数'''
        second_socket:QTcpSocket = self.tcp_servet.nextPendingConnection()
        client_ip = second_socket.peerAddress().toString().split(":")[-1]
        client_port = second_socket.peerPort()
        msg = f"新连接的客户端ip地址为:{client_ip},端口号:{client_port}"
        self.ui.add_str(msg)
        second_socket.readyRead.connect(lambda :self.on_second_socket_ready_read(second_socket))
    @Slot()
    def on_second_socket_ready_read(self,socket:QTcpSocket):
        '''当有数据时触发该函数'''
        # data = socket.readAll() #全部读取
        #读取一行
        while socket.bytesAvailable()>0:
            line_byte = socket.readLine()
            self.ui.add_str(line_byte)


if __name__ == '__main__':

    app = QApplication(sys.argv)

    window = Qt_Tcp_Server()

    sys.exit(app.exec())
相关推荐
艾莉丝努力练剑32 分钟前
【LeetCode&数据结构】单链表的应用——反转链表问题、链表的中间节点问题详解
c语言·开发语言·数据结构·学习·算法·leetcode·链表
橡晟4 小时前
深度学习入门:让神经网络变得“深不可测“⚡(二)
人工智能·python·深度学习·机器学习·计算机视觉
墨尘游子4 小时前
神经网络的层与块
人工智能·python·深度学习·机器学习
倔强青铜35 小时前
苦练Python第18天:Python异常处理锦囊
开发语言·python
u_topian5 小时前
【个人笔记】Qt使用的一些易错问题
开发语言·笔记·qt
企鹅与蟒蛇5 小时前
Ubuntu-25.04 Wayland桌面环境安装Anaconda3之后无法启动anaconda-navigator问题解决
linux·运维·python·ubuntu·anaconda
autobaba5 小时前
编写bat文件自动打开chrome浏览器,并通过selenium抓取浏览器操作chrome
chrome·python·selenium·rpa
珊瑚里的鱼5 小时前
LeetCode 692题解 | 前K个高频单词
开发语言·c++·算法·leetcode·职场和发展·学习方法
AI+程序员在路上6 小时前
QTextCodec的功能及其在Qt5及Qt6中的演变
开发语言·c++·qt
xingshanchang6 小时前
Matlab的命令行窗口内容的记录-利用diary记录日志/保存命令窗口输出
开发语言·matlab