Program.cs
上传用户:jsz11269
上传日期:2017-01-14
资源大小:450k
文件大小:1k
源码类别:

Email服务器

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Net.Sockets;
  5. namespace TcpClientExample
  6. {
  7.     class Program
  8.     {
  9.         private const int portNum = 13;//服务器端口,可以随意修改
  10.         private const string hostName = "127.0.0.1";//服务器地址,127.0.0.1指本机 
  11.         static void Main(string[] args)
  12.         {
  13.             try
  14.             {
  15.                 Console.Write("Try to connect to " + hostName + ":" + portNum.ToString() + "rn");
  16.                 TcpClient client = new TcpClient(hostName, portNum);
  17.                 NetworkStream ns = client.GetStream();
  18.                 byte[] bytes = new byte[1024];
  19.                 int bytesRead = ns.Read(bytes, 0, bytes.Length);
  20.                 Console.WriteLine(Encoding.ASCII.GetString(bytes, 0, bytesRead));
  21.                 client.Close();
  22.                 Console.ReadLine();//由于是控制台程序,故为了清楚的看到结果,可以加上这句 
  23.             }
  24.             catch (Exception e)
  25.             {
  26.                 Console.WriteLine(e.ToString());
  27.             }
  28.         }
  29.     }
  30. }