架构深渊

慢慢走进程序的深渊……关注领域驱动设计、测试驱动开发、设计模式、企业应用架构模式……积累技术细节,以设计架构为宗。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

使用UDP协议发送和接收数据

Posted on 2008-10-12 17:18  chen eric  阅读(1113)  评论(0编辑  收藏  举报

首选引用以下两个:
using System.Net;
using System.Net.Sockets;

//获取机机IP地址:
IPHostEntry ihe = Dns.GetHostByName(Dns.GetHostName());
IPAddress myself = ihe.AddressList[0];
//发送消息
UdpClient udpClient = new UdpClient(Ip地址,端口);
Byte[] sendBytes = Encoding.UTF8.GetBytes("信息内容" );   
udpClient.Send(sendBytes, sendBytes.Length);        //发送消息
//侦听消息
UdpClient receivingUdpClient = new UdpClient(侦听端口);
IPEndPoint RemoteIpEndPoint = new IPEndPoint(IPAddress.Any, 0);
 while (true)         //循环扫描
{
       try
       {
            Byte[] receiveBytes = receivingUdpClient.Receive(ref RemoteIpEndPoint);    //获取接受到的信息,传的时候是以Byte[]来传的,所以接受时也要用Byte
              string stripaddress = RemoteIpEndPoint.Address.ToString();    //发送方IP地址
               string strPort=RemoteIpEndPoint.Port.ToString();      //发送方端口
        }
}

 


文章出处:http://www.diybl.com/course/4_webprogram/asp.net/asp_netshl/2008513/115886.html