文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

C#怎么使用udp实现消息的接收和发送

2023-07-05 06:53

关注

本篇内容主要讲解“C#怎么使用udp实现消息的接收和发送”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C#怎么使用udp实现消息的接收和发送”吧!

使用udp实现消息的接收和发送

代码比较简单,但是别忘记关闭防火墙进行测试。

首先便是服务端,使用Socket进行实现,参考代码如下:

        private static Socket udpServer;        static void startUdpReceive()        {            Console.WriteLine("------startUdpReceive--");            udpServer = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);            udpServer.Bind(new IPEndPoint(IPAddress.Parse("192.168.2.106"), 10023));            new Thread(ReceiveMessage)            {                IsBackground = true            }.Start();        }         private static void ReceiveMessage()        {            Console.WriteLine("------ReceiveMessage--");            while (true)            {                byte[] data = new byte[1024];                EndPoint endPoint = new IPEndPoint(IPAddress.Any, 0);                int count = udpServer.ReceiveFrom(data, ref endPoint);                if (count > 0)                {                    string message = Encoding.UTF8.GetString(data, 0, count);                    Console.WriteLine                        ("-----从ip" + (endPoint as IPEndPoint).Address.ToString()                        + ":" + (endPoint as IPEndPoint).Port + "Get" + message);                }             }        }

在绑定socket端口的时候,需要提供绑定的ip和端口号,如这里是

udpServer.Bind(new IPEndPoint(IPAddress.Parse("192.168.2.106"), 10023));

本机ip是是192.168.2.106,绑定端口是10023。然后使用while循环监听消息。对于本机来说,也可以使用 udpServer.Bind(new IPEndPoint(IPAddress.Any, 10023)); 只绑定端口,对于ip则不限制。

也可以不用Socket而是直接使用UdpClient类来写接收端,效果类似:

        static UdpClient udpcRecv;        public static void UdpServices()        {            try            {                IPAddress ip = IPAddress.Parse("192.168.2.106");                IPEndPoint remoteIpep = new IPEndPoint(ip, 10023);                udpcRecv = new UdpClient(remoteIpep);                Thread thrRecv = new Thread(ReceiveMessage22);                thrRecv.IsBackground = true;                thrRecv.Start();            }            catch (Exception ex)            {                MessageBox.Show("错误", "请检查网络");            }         }          private static void ReceiveMessage22()        {            IPEndPoint remoteIpep = new IPEndPoint(IPAddress.Any, 0);            Console.WriteLine("-----remoteIpep:" + remoteIpep.Address + ":" + remoteIpep.Port);            while (true)            {                try                {                    byte[] bytRecv = udpcRecv.Receive(ref remoteIpep);                    string message = Encoding.UTF8.GetString(                        bytRecv, 0, bytRecv.Length);                    Console.WriteLine("-----reveice  message:" + message);                }                catch (Exception ex)                {                    MessageBox.Show("UDP异常", ex.Message);                }            }        }

接下来是发送端:

            UdpClient udpClient = new UdpClient();            try            {                udpClient.Connect("192.168.2.106", 10023);                Byte[] sendBytes = Encoding.ASCII.GetBytes("Is anybody there??????");                udpClient.Send(sendBytes, sendBytes.Length);            }            catch (Exception ex)            {                Console.WriteLine(ex.ToString());            }

如果代码爆红则应该是导包的问题,加入以下即可。

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;using System.Net.Sockets;using System.Net;using System.Net.NetworkInformation;using System.Management;using System.Threading;

上面都写好后可以测试了,但是我却遇到了问题,后面才知道是电脑端防火墙没开导致,所以和电脑端调试网络通信的时候,需要关闭防火墙,才能收到数据。

C# 运用UDP

面试的时候偶尔会问到UDP和TCP的一个区别。

然后发现在网上查找关于C#运行UDP的实例,确实不好找,杂乱无章。痛定思痛!

进行一个简单的发送和接收测试。

目前,UDP本人亲自用过的场景,客户端和服务端需要进行数据传输,但是服务端,在开始时是连接的别的网络,切换过来之后,并不能知道当前的一个具体的IP地址。但是客户端的IP地址是固定的,此种场景下,服务端网络切换过来之后,建立UDP服务端,像指定的客户端(IP地址和端口号)发送数据,即可知道当前服务端的ip地址。

服务端界面

C#怎么使用udp实现消息的接收和发送

 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Net;using System.Net.Sockets;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace MyTest.UDP{    public partial class UDP_Sever : Form    {        IPEndPoint remotePoint;        UdpClient sever = null;        public UDP_Sever()        {            InitializeComponent();        }                      private void button1_Click(object sender, EventArgs e)        {            IPAddress remoteIP = IPAddress.Parse(textBox1.Text.Trim()); //假设发送给这个IP            int remotePort =int.Parse(textBox2.Text.Trim());            remotePoint = new IPEndPoint(remoteIP, remotePort);//实例化一个远程端点            sever = new UdpClient();        }        private void button2_Click(object sender, EventArgs e)        {            if (!string.IsNullOrWhiteSpace(textBox3.Text.Trim()))            {                string sendString = textBox3.Text.Trim();//要发送的字符串                byte[] sendData = Encoding.Default.GetBytes(sendString);//要发送的字节数组                sever.Send(sendData, sendData.Length, remotePoint);//将数据发送到远程端点                textBox3.Text = "";            }        }        private void UDP_Sever_FormClosing(object sender, FormClosingEventArgs e)        {            sever.Close();        }    }}

客户端界面

C#怎么使用udp实现消息的接收和发送

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Net;using System.Net.Sockets;using System.Text;using System.Threading;using System.Threading.Tasks;using System.Windows.Forms;namespace MyTest.UDP{    public partial class UDP_Client : Form    {        UdpClient client = null;        IPEndPoint remotePoint;        string receiveString = null;        byte[] receiveData = null;        public UDP_Client()        {            InitializeComponent();            CheckForIllegalCrossThreadCalls = false;        }        private void button1_Click(object sender, EventArgs e)        {                     //实例化一个远程端点,IP和端口可以随意指定,等调用client.Receive(ref remotePoint)时会将该端点改成真正发送端端点            remotePoint = new IPEndPoint(IPAddress.Any, 0);            client = new UdpClient(int.Parse(textBox2.Text.Trim()));            Thread thread = new Thread(Revice);            thread.IsBackground = true;            thread.Start();        }        private void Revice()        {            while (true)            {                             receiveData = client.Receive(ref remotePoint);//接收数据                receiveString = Encoding.Default.GetString(receiveData);                listBox1.Items.Add(remotePoint.Address.ToString()+":"+ receiveString);                           }        }    }}

到此,相信大家对“C#怎么使用udp实现消息的接收和发送”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯