简体   繁体   English

streamread 无法从 c# 中的 NetworkStream 读取任何数据,

[英]streamread can't read any data from NetworkStream in c# ,

I have a sensor that has an ip and port 192.168.2.44:3000.我有一个具有 IP 和端口 192.168.2.44:3000 的传感器。

I used the herculas to connect to the device ,as you can see in the picture :我使用 Herculas 连接到设备,如图所示:

enter image description here在此处输入图片说明在此处输入图片说明

I need to implement this software in c# ,so i write this code :我需要在 c# 中实现这个软件,所以我写了这个代码:

private static void Main(string[] args)
        {
            try
            {
                byte[] buffer = new byte[2048]; // read in chunks of 2KB
                int bytesRead;
                var listener = new TcpListener(IPAddress.Any, 3000);
                listener.Start();
                NetworkStream network_stream;
                StreamReader read_stream;
                StreamWriter write_stream;
                var client = listener.AcceptTcpClient();
                network_stream = client.GetStream();

                read_stream = new StreamReader(network_stream);
                write_stream = new StreamWriter(network_stream);

                write_stream.WriteLine("00010002000B0300010004C380");
                write_stream.Flush();  //veriyi gönderiyor

                string gelen;
                gelen = read_stream.ReadLine();
                Console.WriteLine(gelen);
                Console.ReadLine();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
                Console.ReadLine();
            }
        }

When i put a breakpoint the gelen = read_stream.ReadLine();当我放置断点时, gelen = read_stream.ReadLine(); returns null返回null在此处输入图片说明

http://www.hw-group.com/products/hercules/index_en.html http://www.hw-group.com/products/hercules/index_en.html

the final code :最终代码:

class Program
    {
        static void Main(string[] args)
        {
            TcpListener server = null;
            try
            {
                Int32 port = 3000;
               // IPAddress localAddr = IPAddress.Parse(IPAddress.Any);

                server = new TcpListener(IPAddress.Any, port);

                server.Start();

                // Buffer for reading data
                Byte[] bytes = new Byte[256];
                String data = null;

                while (true)
                {
                    Console.Write("Waiting for a connection... ");
                    TcpClient client = server.AcceptTcpClient();
                    Console.WriteLine("Connected!");


                    data = null;

                    NetworkStream stream = client.GetStream();

                    byte[] aaa = { 0, 1, 0, 2, 0, 11, 3, 0, 1, 0, 4, 195, 128 };
                    stream.Write(aaa, 0, aaa.Length);
                    int i;

                    while ((i = stream.Read(bytes, 0, bytes.Length)) != 0)
                    {
                        data = System.Text.Encoding.ASCII.GetString(bytes, 0, i);
                        Console.WriteLine("Received: {0}", data);

                        data = data.ToUpper();
                        byte[] msg = System.Text.Encoding.ASCII.GetBytes(data);
                        stream.Write(msg, 0, msg.Length);
                        Console.WriteLine("Sent: {0}", data);
                    }

                    client.Close();
                }
            }
            catch (SocketException e)
            {
                Console.WriteLine("SocketException: {0}", e);
            }
            finally
            {
                server.Stop();
            }


            Console.WriteLine("\nHit enter to continue...");
            Console.Read();
        }
    }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM