无法同时写入和读取网络流c#

时间:2017-08-04 14:14:27

标签: c# multithreading networkstream

我有一个程序,它使用TCPClient和网络流来接收来自外部IP的消息。消息不断发送,程序将这些消息转换为更易读的格式。

但是,IP需要每8秒接收一次保持活动消息以保持连接打开。

我似乎在阅读邮件时遇到困难,并且同时写入流。只要他们在不同的线程上,我就会感觉你可以读取和写入流。

一旦计时器结束,并且调用保持活动消息的方法,我收到错误:无法从传输连接读取数据:已建立的连接被主机中的软件中止。在调用了写入流方法后尝试读取字节时发生此错误。

以下是我的代码。这是主要的:

public MainWindow()
    {
        InitializeComponent();

        client.Connect(address, port);
        nwStream = client.GetStream();

        System.Timers.Timer newTimer = new System.Timers.Timer(8000);
        newTimer.Elapsed += delegate { KeepAlive(nwStream, newTimer); };
        newTimer.Start();
        Thread t = new Thread(ReadInandOutputToTextBoxIfInvoke);
        t.Start();
    }

以下是从流中读取的线程和方法:

 private void ReadInandOutputToTextBoxIfInvoke()
    {

        while (run)
        {
            string message = "";
            int x = 0;
            int start = 35;
            int messageLength;
            int numberOfMessages;

           // NetworkStream nwStream = client.GetStream();
            try
            {
                while ((x = nwStream.ReadByte()) != start) { if (x == -1) { continue; } } //if it doesnt begin with # or has gone over then break

                //reads in message header which is length then number of messages
                messageLength = nwStream.ReadByte();
                numberOfMessages = nwStream.ReadByte();

                string messageRecieved = new string(readMessage(nwStream, messageLength - 1));
                string[] messages = messageRecieved.Split(new char[] { '|' }, StringSplitOptions.RemoveEmptyEntries);


                for (int i = 0; i < numberOfMessages; i++)
                {
                    string messageToProcess = messages[i];
                    char messageType = messageToProcess[0];

我删除了一个用于翻译邮件的方法,因为它不相关。

这是在计时器结束时调用的代码:

    private void KeepAlive(NetworkStream Ns, System.Timers.Timer MyTimer)
    {
        byte[] toSend = new byte[] { 35, 51, 49, 42, 124 };
        try
        {
            for (int i = 0; i < toSend.Length; i++)
            {
                Ns.WriteByte(toSend[i]);
                Ns.Flush();
            }
        }
        catch
        {
            MyTimer.Close();
        }
    }

1 个答案:

答案 0 :(得分:1)

我现在已经解决了我的问题。阻碍该计划正常运作的因素有两个。

  1. 我使用锁后错误停止显示。
  2. 我发送给设备的消息格式不正确 - 必须是十六进制
  3. 它现在完美无缺。感谢所有试图提供帮助的人。