源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

c# socket网络编程接收发送数据示例代码

  • 时间:2022-05-24 17:45 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:c# socket网络编程接收发送数据示例代码
代码分2块,server端:
[u]复制代码[/u] 代码如下:
class Program     {         static void Main(string[] args)         {             TcpListener lsner = new TcpListener(9000);             lsner.Start();             Console.WriteLine("started in port: 9000");             while (true)             {                 TcpClient client=lsner.AcceptTcpClient();                 Console.WriteLine("new client received. hashcode: {0}", client.GetHashCode());                 ThreadPool.QueueUserWorkItem(new WaitCallback(ProcessTcpClient), client);             }             Console.ReadKey();         }         private static void ProcessTcpClient(object state)         {             TcpClient client=state as TcpClient;             if(client==null)                 Console.WriteLine("client is null");             NetworkStream ns=client.GetStream();             StreamWriter sw = new StreamWriter(ns);             sw.WriteLine("Welcome.");             sw.Flush();             sw.Close();             client.Close();         }
client端:
[u]复制代码[/u] 代码如下:
class Program     {         static void Main(string[] args)         {             IPAddress address = IPAddress.Parse("127.0.0.1");             IPEndPoint ep=new IPEndPoint(address, 9000);             TcpClient client = new TcpClient();             client.Connect(ep);             NetworkStream ns=client.GetStream();             StreamReader sr = new StreamReader(ns);             Console.WriteLine(sr.ReadToEnd());             sr.Close();             sr.Dispose();             ns.Close();             ns.Dispose();             client.Close();             Console.ReadKey();         }     }
[img]http://files.jb51.net/file_images/article/201312/20131205101521.jpg?201311510162[/img]
 
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部