117.info
人生若只如初见

如何实现C# Socket的多线程通信

在C#中,使用Socket实现多线程通信可以通过创建一个服务器端和客户端并为每个连接创建单独的线程来完成。这里是一个简单的示例,展示了如何实现多线程Socket通信:

  1. 首先,创建一个服务器端:
using System;
using System.Net;
using System.Net.Sockets;
using System.Threading;

class Server
{
    private TcpListener _listener;

    public void Start(int port)
    {
        _listener = new TcpListener(IPAddress.Any, port);
        _listener.Start();

        Console.WriteLine("Server started on port: " + port);

        while (true)
        {
            // Accept incoming connections and create a new thread for each connection
            TcpClient client = _listener.AcceptTcpClient();
            Thread clientThread = new Thread(HandleClient);
            clientThread.Start(client);
        }
    }

    private void HandleClient(object obj)
    {
        TcpClient client = (TcpClient)obj;
        NetworkStream stream = client.GetStream();

        // Read and process data from the client
        byte[] buffer = new byte[256];
        int bytesRead = stream.Read(buffer, 0, buffer.Length);
        string receivedData = https://www.yisu.com/ask/System.Text.Encoding.ASCII.GetString(buffer, 0, bytesRead);"Received data: " + receivedData);

        // Send response to the client
        string response = "Server received: " + receivedData;
        byte[] responseData = https://www.yisu.com/ask/System.Text.Encoding.ASCII.GetBytes(response);>
  1. 然后,创建一个客户端:
using System;
using System.Net.Sockets;

class Client
{
    public void Connect(string serverIp, int port)
    {
        TcpClient client = new TcpClient(serverIp, port);
        NetworkStream stream = client.GetStream();

        // Send data to the server
        string message = "Hello, Server!";
        byte[] data = https://www.yisu.com/ask/System.Text.Encoding.ASCII.GetBytes(message);"Server response: " + response);

        // Close the connection
        stream.Close();
        client.Close();
    }
}
  1. 最后,在主程序中启动服务器和客户端:
using System;
using System.Threading;

class Program
{
    static void Main(string[] args)
    {
        // Start the server
        Server server = new Server();
        Thread serverThread = new Thread(() => server.Start(8000));
        serverThread.Start();

        // Give the server some time to start
        Thread.Sleep(1000);

        // Connect the client
        Client client = new Client();
        client.Connect("127.0.0.1", 8000);

        Console.ReadLine();
    }
}

这个示例中,服务器监听指定端口上的连接请求,并为每个连接创建一个新线程。客户端连接到服务器并发送一条消息,然后接收服务器的响应。这种方法可以轻松地扩展到处理多个客户端连接。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe3f9AzsOCQFeDQ.html

推荐文章

  • c++字符串拼接的方式有哪几种

    在C++中,有以下几种字符串拼接的方式: 使用"+"运算符进行拼接: std::string str1 = "Hello";
    std::string str2 = "World";
    std::string result = s...

  • c++保留小数点后几位如何弄

    在C++中,可以使用以下方法来保留小数点后几位: 使用fixed和setprecision函数: #include #include int main() {
    double number = 3.1415926;
    int pr...

  • c++中int转string的方法是什么

    在C++中,可以使用以下几种方法将int转换为string: 使用std::to_string函数:std::to_string是C++11标准库中的一个函数,它可以将整数转换为对应的字符串。示例...

  • c++标识符的用途有哪些

    C++标识符用于命名变量、常量、函数、类、结构体、枚举等程序元素。以下是C++标识符的一些主要用途: 命名变量:标识符可用于给变量命名,以便在程序中引用和操作...

  • LAMP架构中的负载均衡如何实现

    在LAMP架构中,实现负载均衡的关键在于将请求分发到多个服务器上,以提高系统的性能、可用性和可扩展性。以下是几种常见的LAMP架构中实现负载均衡的方法:
    ...

  • 如何扩展LAMP架构以支持高并发

    要扩展LAMP(Linux、Apache、MySQL和PHP)架构以支持高并发,可以采取以下策略: 优化Apache配置:调整Apache的配置文件(如httpd.conf或apache2.conf),以提高...

  • LAMP架构中的缓存机制如何实现

    LAMP架构中的缓存机制主要通过结合使用各种缓存技术和策略来实现,以提高Web应用的性能和响应速度。以下是实现LAMP架构中缓存机制的主要方法: 服务器端缓存: 静...

  • 如何监控LAMP架构的性能

    监控LAMP架构的性能对于确保Web应用程序的稳定运行至关重要。LAMP架构由Linux操作系统、Apache Web服务器、MySQL数据库和PHP编程语言组成。以下是一些监控LAMP架...