streamread无法从c#中的NetworkStream读取任何数据, [英] streamread can't read any data from NetworkStream in c# ,

查看:222
本文介绍了streamread无法从c#中的NetworkStream读取任何数据,的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个具有IP和端口192.168.2.44:3000的传感器.

I have a sensor that has an ip and port 192.168.2.44:3000.

我使用了大力神连接到设备,如图所示:

I used the herculas to connect to the device ,as you can see in the picture :

在此处输入图片说明

enter image description here

我需要在C#中实现此软件,所以我编写了这段代码:

I need to implement this software in c# ,so i write this code :

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();
            }
        }

当我设置断点时,gelen = read_stream.ReadLine();返回null

When i put a breakpoint the gelen = read_stream.ReadLine(); returns null

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

推荐答案

最终代码:

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();
        }
    }

这篇关于streamread无法从c#中的NetworkStream读取任何数据,的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆