示例#1
0
        static void Main(string[] args)
        {
            try
            {
                int    port = 10000;
                string host = "127.0.0.1";
                //string host = "192.168.1.208";
                IPAddress  ipa = IPAddress.Parse(host);
                IPEndPoint ipe = new IPEndPoint(ipa, port);//把ip和端口转化为ipendpoint实例
                //Socket s = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);//创建一个socket
                //Console.WriteLine("connecting.....");
                //s.Connect(ipe);//连接到服务器
                //string sendStr = "";
                //sendStr = Console.ReadLine();
                //while(true)
                //{

                //byte[] bs = Encoding.ASCII.GetBytes(sendStr);
                //Console.WriteLine("SendMessage");
                //s.Send(bs, bs.Length, 0);//发送测试信息

                for (int i = 0; i < 10; i++)
                {
                    SendImg.SendImage("C:\\Users\\Tony\\Desktop\\0.png", ipe);
                }


                //string recvStr = "";
                //byte[] recvBytes = new byte[1024];
                //int bytes;
                //bytes = s.Receive(recvBytes, recvBytes.Length, 0);//从服务器端接收返回信息
                //recvStr += Encoding.ASCII.GetString(recvBytes, 0, bytes);
                Console.WriteLine("GOOD");
                Thread.Sleep(1000);
                // }
                //显示服务器返回信息
            }
            catch (ArgumentNullException ex)
            { Console.WriteLine(ex); }
            catch (SocketException ex)
            { Console.WriteLine(ex); }
            Console.WriteLine("press enter to exit");
            Console.ReadLine();
        }
示例#2
0
文件: Program.cs 项目: TonyPod/MyIC
        static void Main(string[] args)
        {
            try
            {
                IPAddress ipa = IPAddress.Parse(serverIP);
                IPEndPoint ipe = new IPEndPoint(ipa, serverPort);//把ip和端口转化为ipendpoint实例
                //Socket s = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);//创建一个socket
                //Console.WriteLine("connecting.....");
                //s.Connect(ipe);//连接到服务器
                //string sendStr = "";
                //sendStr = Console.ReadLine();
                //while(true)
                //{
                   
                    //byte[] bs = Encoding.ASCII.GetBytes(sendStr);
                    //Console.WriteLine("SendMessage");
                    //s.Send(bs, bs.Length, 0);//发送测试信息

                //不同的TCP连接
                //for (int i = 0; i < 10; i++)
                //{
                //    SendImg.SendImage("2.bmp", ipe);
                //}
                //SendImg.SendImage("2.bmp", ipe, 10);
                SendImg.SendImage("2.bmp", ipe);

                Console.WriteLine("GOOD");
                Thread.Sleep(1000);
            }
            catch (ArgumentNullException ex)
            { Console.WriteLine(ex); }
            catch (SocketException ex)
            { Console.WriteLine(ex); }
            Console.WriteLine("press enter to exit");
            Console.ReadLine();
        }