• C# 处理TCP数据的类(服务端)


    using System;
    using System.Collections.Generic;
    using System.Net;
    using System.Net.Sockets;
    using System.Threading;
    
    namespace TestDemo
    {
        /// 
        /// 处理TCP数据的类(服务端)
        /// 
        public class TcpService
        {
            /// 
            /// TCP监听对象
            /// 
            private TcpListener tcpListener;
    
            /// 
            /// 创建TCP监听
            /// 
            public void CreateListener(int port)
            {
                // 监听对象
                tcpListener = new TcpListener(IPAddress.Any, port);
                tcpListener.Start();
                // 独立线程监听
                Thread thread = new Thread(StartListener);
                thread.Start();
            }
    
            /// 
            /// 开始监听
            /// 
            private void StartListener()
            {
                while (true)
                {
                    try
                    {
                        // TCP监听
                        TcpClient tcpClient = tcpListener.AcceptTcpClient();
                        // 多线程处理数据
                        Thread thread = new Thread(new ParameterizedThreadStart(delegate { DealTcpData(tcpClient); }));
                        thread.Start();
                    }
                    catch (Exception ex)
                    {
                        // 错误日志
                        Log.WriteError(ex);
                    }
                }
            }
    
            /// 
            /// 处理TCP数据
            /// lv结构:数据的前4个字节(int),记录了数据区的长度
            /// 注意:数据结构根据实际使用情况而定
            /// 
            private void DealTcpData(TcpClient tcpClient)
            {
                try
                {
                    if (tcpClient.Connected)
                    {
                        // 取得流
                        NetworkStream networkStream = tcpClient.GetStream();
                        networkStream.ReadTimeout = 500;
                        networkStream.WriteTimeout = 500;
                        #region 接收数据
                        // 接收数据储存
                        List<byte> list = new List<byte>();
                        // 数据区总长度
                        byte[] lenArr = new byte[4];
                        networkStream.Read(lenArr, 0, lenArr.Length);
                        int dataLen = BitConverter.ToInt32(lenArr, 0);
                        // 读取数据区数据
                        int total = 0;
                        // 每次读取的数据大小
                        int arrLen = 1024;
                        while (true)
                        {
                            // 读取数据
                            byte[] arr = new byte[arrLen];
                            int len = networkStream.Read(arr, 0, arr.Length);
                            for (int i = 0; i < len; i++)
                            {
                                list.Add(arr[i]);
                            }
                            // 判断数据的是否读取完成
                            total += len;
                            if (dataLen - total <= 0)
                            {
                                break;
                            }
                            if (dataLen - total < arrLen)
                            {
                                arrLen = dataLen - total;
                            }
                            Thread.Sleep(0);
                        }
                        // 根据功能或实际情况处理接收的数据
                        byte[] receiveData = list.ToArray();
                        #endregion
                        #region 发送数据
                        // 取得数据
                        // 根据功能或实际情况做成需要发送的数据
                        byte[] dataArr = new byte[] { 0x01, 0x02, 0x03, 0x04 }; // 测试数据
                        if (dataArr != null)
                        {
                            // 数据长度
                            byte[] lengArr = BitConverter.GetBytes(dataArr.Length);
                            // 拼接数据头(lv结构)
                            byte[] sendArr = new byte[lengArr.Length + dataArr.Length];
                            lengArr.CopyTo(sendArr, 0);
                            dataArr.CopyTo(sendArr, 4);
                            // 发送数据
                            try
                            {
                                lock (networkStream)
                                {
                                    networkStream.Write(sendArr, 0, sendArr.Length);
                                }
                            }
                            catch { }
                        }
                        #endregion
                    }
                }
                catch (Exception ex)
                {
                    // 错误日志
                    Log.WriteError(ex);
                }
                finally
                {
                    // 判断TCP对象是否连接
                    if (tcpClient != null)
                    {
                        JudgeTcpConnection(tcpClient);
                    }
                }
            }
    
            /// 
            /// 判断TCP对象是否连接
            /// 
            private void JudgeTcpConnection(TcpClient tcpClient, int timeout = 3)
            {
                try
                {
                    DateTime time = DateTime.Now;
                    while (true)
                    {
                        // 超时时间判断
                        if (time.AddSeconds(timeout) < DateTime.Now)
                        {
                            break;
                        }
                        // 连接状态判断
                        if (!tcpClient.Connected)
                        {
                            break;
                        }
                        else
                        {
                            bool flag = tcpClient.Client.Poll(1000, SelectMode.SelectRead);
                            if (flag)
                            {
                                break;
                            }
                        }
                        Thread.Sleep(0);
                    }
                }
                catch (Exception ex)
                {
                    // 错误日志
                    Log.WriteError(ex);
                }
                finally
                {
                    // 关闭连接
                    tcpClient.Close();
                }
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188

    原文地址 https://www.cnblogs.com/smartnn/p/16635584.html

  • 相关阅读:
    51.MongoDB聚合操作与索引使用详解
    最新CleanMyMac X4.12.1中文版Mac系统优化清理工具
    每天一个设计模式之观察者模式+发布订阅模式(Observer Pattern)
    基于springboot的应用诊断工具,yyds
    SpringBoot单元测试(unit testing)
    基于Java毕业设计疫情期间社区出入管理系统源码+系统+mysql+lw文档+部署软件
    目标检测算法——YOLOv5/YOLOv7改进结合新神经网络算子Involution(CVPR 2021)
    浅析linux内核网络协议栈--linux bridge
    python面向对象的编程---类
    实现打印功能
  • 原文地址:https://blog.csdn.net/qq_20490553/article/details/133789051