C# 使用Socket通信,新建WinForm服务端、客户端程序

一、新建WinForm Socket服务端程序

注:rtbReceviceMsg为RichTextBox控件

服务端程序、界面


服务端代码

csharp 复制代码
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }
    public virtual void TriggerOnUpdateUI(string message)
    {
        if (this.InvokeRequired)
        {
            this.Invoke(new Action<string>(TriggerOnUpdateUI), message);
        }
        else
        {
            rtbReceviceMsg.Text += message + "\n";
        }
    }
    private void btnStartServer_Click(object sender, EventArgs e)
    {
        TcpServer.StartListening(9999, this);
        btnStartServer.Enabled = false;
    }

    private void btnStopServer_Click(object sender, EventArgs e)
    {
        TcpServer.StopListening();
        btnStartServer.Enabled = true;
    }
}
 public class TcpServer
 {
     public static Form1 _mainForm;
     private static TcpListener _listener;
     private static bool _isRunning;
     public static void StartListening(int port, Form1 form)
     {
         _mainForm = form;
         _listener = new TcpListener(IPAddress.Loopback, port);
         _listener.Start();
         _isRunning=true;
         Console.WriteLine("Server listening on port " + port);

         Task.Run(() => ListenForClients());
     }
     public static void ListenForClients()
     {
         while (_isRunning)
         {
             try
             {
                 TcpClient client = _listener.AcceptTcpClient();
                 Console.WriteLine("Client connected");
                 HandleClient(client);
             }
             catch (SocketException)
             {
                 if (!_isRunning)
                 {
                     break;
                 }
             }
         }
     }
     private static void HandleClient(TcpClient client)
     {
         NetworkStream stream = client.GetStream();
         byte[] buffer = new byte[1024];
         int bytesRead;
         while ((bytesRead = stream.Read(buffer, 0, buffer.Length)) != 0)
         {
             string message = Encoding.ASCII.GetString(buffer, 0, bytesRead);
             Console.WriteLine("received" + message);
             stream.Write(buffer, 0, bytesRead);

             _mainForm.BeginInvoke(new Action(() => _mainForm.TriggerOnUpdateUI(message)));
         }
     }
     public static void StopListening()
     {
         _isRunning = false;
         _listener?.Stop();
     }
 }

二、新建WinForm Socket客户端程序

客户端程序、界面


客户端代码

csharp 复制代码
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }
    public static void ConnectToServer(string hostname, int port)
    {
        try
        {
            using (TcpClient tcpClient = new TcpClient(hostname, port))
            {
                Console.WriteLine("Connected to server");

                NetworkStream stream = tcpClient.GetStream();

                byte[] data = Encoding.ASCII.GetBytes($"Hellow,Server!{DateTime.Now.ToString()}");
                stream.Write(data, 0, data.Length);
                Console.WriteLine("Sent:Hellow,Server!");

                byte[] buffer = new byte[1024];
                int bytesRead = stream.Read(buffer, 0, buffer.Length);
                string response = Encoding.ASCII.GetString(buffer, 0, bytesRead);
                Console.WriteLine($"Response: {response}");
            }
        }
        catch (SocketException ex)
        {
            MessageBox.Show($"连接异常:{ex.Message}");
        }
    }
    private void btnStartServer_Click(object sender, EventArgs e)
    {
        ConnectToServer("127.0.0.1", 9999);
    }
}

服务端、客户端程序运行效果

相关推荐
葬歌倾城7 小时前
JSON的缩进格式方式和紧凑格式方式
c#·json
游戏开发爱好者89 小时前
iOS App首次启动请求异常调试:一次冷启动链路抓包与初始化流程修复
websocket·网络协议·tcp/ip·http·网络安全·https·udp
2501_915106329 小时前
频繁迭代下完成iOS App应用上架App Store:一次快速交付项目的完整回顾
websocket·网络协议·tcp/ip·http·网络安全·https·udp
Eiceblue9 小时前
使用 C# 发送电子邮件(支持普通文本、HTML 和附件)
开发语言·c#·html·visual studio
小小小小王王王9 小时前
hello判断
开发语言·c#
金增辉11 小时前
基于C#的OPCServer应用开发,引用WtOPCSvr.dll
c#
future141213 小时前
C#学习日记
开发语言·学习·c#
傻啦嘿哟14 小时前
Python 办公实战:用 python-docx 自动生成 Word 文档
开发语言·c#
00后程序员张15 小时前
免Mac上架实战:全平台iOS App上架流程的工具协作经验
websocket·网络协议·tcp/ip·http·网络安全·https·udp
唐青枫19 小时前
C#.NET log4net 详解
c#·.net