C#中使用UDP通訊

來源:互聯網
上載者:User

標籤:style   http   java   color   使用   資料   

UDP通訊是無串連通訊,用戶端在發送資料前無需與伺服器端建立串連,即使伺服器端不線上也可以發送,但是不能保證伺服器端可以收到資料。

伺服器端代碼:

 

C#代碼  
  1. static void Main(string[] args)  
  2.         {  
  3.             UdpClient client = null;  
  4.             string receiveString = null;  
  5.             byte[] receiveData = null;  
  6.             //執行個體化一個遠程端點,IP和連接埠可以隨意指定,等調用client.Receive(ref remotePoint)時會將該端點改成真正發送端端點  
  7.             IPEndPoint remotePoint = new IPEndPoint(IPAddress.Any, 0);  
  8.   
  9.             while (true)  
  10.             {  
  11.                 client = new UdpClient(11000);  
  12.                 receiveData = client.Receive(ref remotePoint);//接收資料  
  13.                 receiveString = Encoding.Default.GetString(receiveData);  
  14.                 Console.WriteLine(receiveString);  
  15.                 client.Close();//關閉串連  
  16.             }  
  17.         }  

 用戶端代碼:

 

C#代碼  
  1. static void Main(string[] args)  
  2.         {  
  3.             string sendString = null;//要發送的字串  
  4.             byte[] sendData = null;//要發送的位元組數組  
  5.             UdpClient client = null;  
  6.   
  7.             IPAddress remoteIP = IPAddress.Parse("127.0.0.1");  
  8.             int remotePort = 11000;  
  9.             IPEndPoint remotePoint = new IPEndPoint(remoteIP, remotePort);//執行個體化一個遠程端點  
  10.   
  11.             while (true)  
  12.             {  
  13.                 sendString = Console.ReadLine();  
  14.                 sendData = Encoding.Default.GetBytes(sendString);  
  15.   
  16.                 client = new UdpClient();  
  17.                 client.Send(sendData, sendData.Length, remotePoint);//將資料發送到遠程端點  
  18.                 client.Close();//關閉串連  
  19.             }  
  20.         }  

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.