C#用Socket实现TCP客户端

1、TCP客户端实现代码

csharp 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace PtLib.TcpClient
{
    public delegate void TcpClientReceivedEventHandler(TcpClientStateEventArgs args);
    public class TcpClient
    {
        //接收委托
        public event TcpClientReceivedEventHandler TcpReceived;
        //
        private string _ip = "127.0.0.1";
        //
        private int _port = 8080;
        //
        Socket socket = null;
        //
        Thread thread = null;

        /// <summary>
        /// 
        /// </summary>
        /// <param name="ip"></param>
        /// <param name="port"></param>
        public TcpClient(string ip,int port) 
        { 
            _ip = ip;
            _port = port;
        }
        /// <summary>
        /// 
        /// </summary>
        public void Open()
        {
            socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
            IPEndPoint endPoint=new IPEndPoint(IPAddress.Parse(_ip), _port);
            socket.Connect(endPoint);

            thread = new Thread(Receiver);
            thread.IsBackground = true;
            thread.Start();
        }

        private void Receiver()
        {
            while (true)
            {
                byte[] buffer = new byte[1024*1024];
                int length = socket.Receive(buffer);
                if(length > 0)
                {
                    byte[] b = new byte[length];
                    Buffer.BlockCopy(buffer, 0, b, 0, length);
                    TcpClientStateEventArgs args = new TcpClientStateEventArgs();
                    args.buffer = b;
                    TcpReceived?.Invoke(args);
                }
            }
        }

        public void Send(byte[] data)
        {
            socket.Send(data);
        }
        /// <summary>
        /// 
        /// </summary>
        public void Close() 
        {
            socket?.Close();
            thread?.Abort();
            socket = null;
            thread = null;
        }
    }
    /// <summary>
    /// Tcp状态事件参数类
    /// </summary>
    public class TcpClientStateEventArgs : EventArgs
    {
        public byte[] buffer = null;
    }
}

2、应用程序

csharp 复制代码
using PtLib.TcpServer;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace TcpClient
{
    public partial class Form1 : Form
    {
        PtLib.TcpClient.TcpClient tcpClient = null;
        /// <summary>
        /// 
        /// </summary>
        public Form1()
        {
            InitializeComponent();
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnConnect_Click(object sender, EventArgs e)
        {
            if (btnConnect.Text.Equals("连接"))
            {
                btnConnect.Text = "断开";
                string ip = tbClientIp.Text.Trim();
                int port = int.Parse(tbClientPort.Text.Trim());
                tcpClient = new PtLib.TcpClient.TcpClient(ip, port);
                tcpClient.Open();
                tcpClient.TcpReceived += TcpClient_TcpReceived;
            }
            else
            {
                btnConnect.Text = "连接";
                tcpClient.Close();
            }
        }

        private void TcpClient_TcpReceived(PtLib.TcpClient.TcpClientStateEventArgs args)
        {
            string str = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff") + ":";
            str += Encoding.UTF8.GetString(args.buffer);
            this.Invoke(new Action(() =>
            {
                lbxReceive.Items.Add(str);
            }));
        }

        /// <summary>
        /// 
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnSend_Click(object sender, EventArgs e)
        {
            string str = tbxSend.Text.Trim();
            byte[] sendBytes = Encoding.UTF8.GetBytes(str);
            tcpClient.Send(sendBytes);
        }
    }
}

3、实现效果

相关推荐
GUET_一路向前1 小时前
【C语言】解释形参void *data用法
c语言·开发语言·通用指针
skywalk81631 小时前
转换一个python项目到moonbit,碰到报错输出:编译器对workflow.mbt文件中的类方法要求不一致的类型注解,导致无法正常编译
开发语言·moonbit·trae
做一位快乐的码农2 小时前
基于.net、C#、asp.net、vs的保护大自然网站的设计与实现
c#·asp.net·.net
DavieLau2 小时前
C#项目WCF接口暴露调用及SOAP接口请求测试(Python版)
xml·服务器·开发语言·python·c#
张人玉2 小时前
C#Encoding
开发语言·c#
Hard but lovely3 小时前
C++:stl-> list的模拟实现
开发语言·c++·stl·list
码界筑梦坊3 小时前
98-基于Python的网上厨房美食推荐系统
开发语言·python·美食
光爷不秃4 小时前
Go语言中安全停止Goroutine的三种方法及设计哲学
开发语言·安全·golang
lpfasd1234 小时前
非中文语音视频自动生成中文字幕的完整实现方案
开发语言·python
hqwest4 小时前
C#WPF实战出真汁05--左侧导航
开发语言·c#·wpf·主界面·窗体设计·视图viewmodel