C#TCP聊天应用程序线程

时间:2012-04-18 06:42:53

标签: c# multithreading sockets tcp p2p

我迫切需要帮助。我基本上创建了一个程序(将使用)加密来回发送消息。加密部分工作正常,但我对线程是相当新的,我不能为我的生活让我的应用程序的客户端/服务器部分排队。聊天程序是使用TCP的直接IP连接,因此每个主机都是客户端和服务器。当我调试时,我似乎遇到的问题是,当客户端尝试连接到服务器线程时,服务器线程未准备就绪,或者如果它已准备就绪,它将不会放弃线程,因此客户端可以连接!我已经工作了几个小时了,这非常令人沮丧......我希望有人可以提供帮助!我在下面提供了我的代码。 这是我的MainForm的代码片段,它构建了客户端和服务器方面:

private void InitializeComponent() {

        server = new ServerSide("127.0.0.1",7865);
        servThread = new Thread(new ThreadStart(server.begin));
        client = new ClientSide("127.0.0.1",7865);
        clientThread = new Thread(new ThreadStart(client.begin));
        servThread.Start();
        clientThread.Start();


        //servThread.Join();
        //clientThread.Join();

}

这是我的ServerSide代码:

public class ServerSide
{
    String IpString;
    int tcpPort;
    bool goodToGo = false;
    System.Net.IPAddress ipAddress = null;
    public ServerSide(String ip, int tcpPort)
    {
        IpString = ip;
        bool isValidIp = System.Net.IPAddress.TryParse(IpString, out ipAddress);
        if (isValidIp == true) // check if the IP is valid, set the bool to true if so
        {
            goodToGo = true;
        }
        else
        {
            goodToGo = false;
        }
    }

    public void begin()
    {
        try
        {
            IPAddress ipAd = IPAddress.Parse(IpString);

            /* Initializes the Listener */
            TcpListener myList = new TcpListener(ipAd, tcpPort);
            Socket s = null;
            /* Start Listening at the specified port */
            while (true)
            {
                myList.Start();

                if (myList.Pending())
                { 
                        s = myList.AcceptSocket();
                         break;
                }

            }

            String toReceive = "";
                    while (true)
                    {
                        byte[] b = new byte[4096];
                        int k = s.Receive(b);
                        for (int i = 0; i < k; i++)
                            toReceive += Convert.ToString((Convert.ToChar(b[i])));

                        // ASCIIEncoding asen = new ASCIIEncoding();

                        var form = MainForm.ActiveForm as MainForm;
                        if (form != null)
                        {
                            form.messageReceived(toReceive);
                        }
                        toReceive = "";
                    }
                }
        catch (Exception e)
        {
            Console.WriteLine("Error..... " + e.StackTrace);
        }
    }
}

}

ClientSide代码:

 public class ClientSide
{
    private String IpString;
    private int tcpPort;
    private TcpClient tcpInt;
    private static Stream stm;
    private System.Net.IPAddress ipAddress = null;
    private bool goodToGo = false;

    public ClientSide(String ip, int tcpPort)
    {

        IpString = ip;
        this.tcpPort = tcpPort;

        bool isValidIp = System.Net.IPAddress.TryParse(IpString, out ipAddress);
        if (isValidIp == true)
        {
            goodToGo = true;
        }
        else
        {
            goodToGo = false;
        }
    }

    public void begin()
    {
        try
        {
            tcpInt = new TcpClient();
            // Console.WriteLine("Connecting.....");



            tcpInt.Connect(IpString, tcpPort);
            // use the ipaddress as in the server program

            // Console.WriteLine("Connected");

            // String str = Console.ReadLine();
            stm = tcpInt.GetStream();
        }

        catch (Exception e)
        {
            Console.WriteLine("Error..... " + e.StackTrace);
        }
    }


    public void sendMessage(String str)
    {
      //  stm = tcpInt.GetStream();

        ASCIIEncoding asen = new ASCIIEncoding();
        byte[] ba = asen.GetBytes(str);

        stm.Write(ba, 0, ba.Length);

      /**  byte[] bb = new byte[100];
        int k = stm.Read(bb, 0, 100);

        for (int i = 0; i < k; i++)
            Console.Write(Convert.ToChar(bb[i]));*/

    }
}

}

再次..通常发生的事情是我的客户收到主机主动拒绝连接的错误..但我不知道如何计时。我正在寻找如何让我的服务器监听TCP连接,但仍然设法转到我的其他线程来创建TCP Connecion来发送服务器(我目前正在localhost上测试它)。 感谢。

1 个答案:

答案 0 :(得分:7)

ServerSide类的构造函数中,您忘记初始化tcpPort成员。因为您忘记了,服务器将尝试侦听端口0,客户端将尝试连接到端口7865,它将失败。

尝试将此代码添加到ServerSide类中的构造函数。

this.tcpPort = tcpPort;

对于线程,如果客户端线程在服务器线程开始侦听之前尝试连接,则可能会出现问题。如果你没有成功,你可以使用循环尝试连接多次(比方说10),超时(假设1秒)。这样,你将重试10次并在此之后放弃。

相关问题