C#之socket编程

编程需要恒心和毅力,最主要的是要有信心,循序渐进的完成任务。 一、socket类用于网络通信 命名空间System.Net.Sockets,完整的类引用System.Net.Sockets.Socket。Socket类支持各种网络协议。 二、简单的控制台程序 using System;using System.Collections.

编程需要恒心和毅力,最主要的是要有信心,循序渐进的完成任务。

一、socket类用于网络通信
命名空间System.Net.Sockets,完整的类引用System.Net.Sockets.Socket。Socket类支持各种网络协议。
二、简单的控制台程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplicationSocket01
{
    class Program
    {
        static void Main(string[] args)
        {

        }
    }
}
三、添加socket变量
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
namespace ConsoleApplicationSocket01
{
    class Program
    {
        static void Main(string[] args)
        {
            Socket UnitySocketServer=
new Socket(AddressFamily.InterNetwork,SocketType.Dgram,ProtocolType.Udp);
            
        }
    }
}
然后bind服务器主机的 IP地址:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;

namespace ConsoleApplicationSocket01
{
    class Program
    {
        static void Main(string[] args)
        {
            Socket UnitySocketServer=
new Socket(AddressFamily.InterNetwork,SocketType.Dgram,ProtocolType.Udp);
            IPAddress HostIpAddress = IPAddress.Parse("127.0.0.1");
            UnitySocketServer.Bind(new IPEndPoint(HostIpAddress,5600));

    }
}
四、让socket接收数据
UnitySocketServer.Receive();Receive()方法用于接收传入的数据,该方法有多个重载版本。
先定义接收数据的数组BytesOfReceived,然后调用Receive()接收数据
static void Main(string[] args)
        {
            Byte[] BytesOfReceived=new Byte[512];
            Socket UnitySocketServer=
new Socket(AddressFamily.InterNetwork,SocketType.Dgram,ProtocolType.Udp);
            IPAddress HostIpAddress = IPAddress.Parse("127.0.0.1");
            UnitySocketServer.Bind(new IPEndPoint(HostIpAddress,5600));
            UnitySocketServer.Receive(BytesOfReceived);
}
当然,上面的程序会存在很多问题,下面进行修正。先将Receive()放入无限循环结构,使socket不停的接收消息:
static void Main(string[] args)
        {
            Byte[] BytesOfReceived=new Byte[512];
            Socket UnitySocketServer=
new Socket(AddressFamily.InterNetwork,SocketType.Dgram,ProtocolType.Udp);
            IPAddress HostIpAddress = IPAddress.Parse("127.0.0.1");
            UnitySocketServer.Bind(new IPEndPoint(HostIpAddress,5600));
            while(true){
                UnitySocketServer.Receive(BytesOfReceived);
            }
接下来,继续修正,先判断每次循环是否接收到消息,如果接收到消息就显示它。Receive()方法会返回接收的数据长度,我们要利用这个值。
static void Main(string[] args)
        {
            Byte[] BytesOfReceived=new Byte[512];
            Socket UnitySocketServer=
new Socket(AddressFamily.InterNetwork,SocketType.Dgram,ProtocolType.Udp);
            IPAddress HostIpAddress = IPAddress.Parse("127.0.0.1");
            UnitySocketServer.Bind(new IPEndPoint(HostIpAddress,5600));
            while(true){
                int NumOfReceived=0;
                NumOfReceived=UnitySocketServer.Receive(BytesOfReceived);
                if(NumOfReceived>0){
                    Console.Write(Console.Write(Encoding.UTF8.GetString(BytesOfReceived)););
                }
            }
到此,该程序具有了基本功能,接下来可以测试它。
五、为了测试以上程序,我们再次创建控制台程序,这次创建的程序是客户端程序。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;

namespace ConsoleApplicationSocketClient01
{
    class Program
    {
        static void Main(string[] args)
        {
            Byte[] BytesOfSended =Encoding.UTF8.GetBytes("whtskjdkjfg");
            Socket UnitySocketClient = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
            IPAddress HostIpAddress = IPAddress.Parse("127.0.0.1");
            UnitySocketClient.Bind(new IPEndPoint(HostIpAddress, 5601));
           while(true){
                int NumOfReceived = 0;
                NumOfReceived = UnitySocketClient.SendTo(BytesOfSended, new IPEndPoint(HostIpAddress, 5600));
                
           }

        }
    }
}

六、按Ctrl+F5,运行上面的两个程序。发现运行良好。
七、可以在此基础上做进一步的修正,以完成其他功能。
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

在PHP中,strlen与mb_strlen是求字符串长度的函数,但是对于一些初学者来说,如果不看手册,也许不太清楚其中的区别。 下面通过例子,讲解这两者之间的区别。 先看例子: ?php //测试时文件的编码方式要是UTF8 $str=中文a字1符; echo strlen($str).br;//14 e
在开发的过程中,如果对于少量参数的前后台传递,可以直接采用ajax的data函数,按json格式传递,后台Request即可,但有的时候,需要传递多个参数,这样后台 接受的时候Request多个很麻烦,此时要按照类的格式或者 集合的形式进行传递。 例如:前台按类的格式
安装完ImageMagick之后,直接执行magick convert f:\parseWord\tmp\testpdf.pdf f:\parseWord\tmp\testpdf.jpg,会报错: convert: FailedToExecuteCommand `gswin32c.exe -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignTo
CRM(Customer Relationship Management)就是客户关系管理。从字义上看,是指企业用CRM来管理与客户之间的关系。CRM是选择和管理有价值客户及其关系的一种商业策略,CRM要求以客户为中心的商业哲学和企业文化来支持有效的市场营销、销售与服务流程。如果企业
1.依赖的头文件 #includeunistd.h 2.函数定义: //通过传入path的方式,改变和文件的拥有关系,如果他是一个符号链接,则跟踪它 int chown(const char *path, uid_t owner, gid_t group); //通过文件描述的方式进行修改用户所有组等的情况 int fchown(int fd
今天遇到一个正则匹配的问题,忽然翻到有捕获组的概念,手册上也是一略而过,百度时无意翻到C#和Java中有对正则捕获组的特殊用法,搜索关键词有PHP时竟然没有相关内容,自己试了一下,发现在PHP中也是可行的,于是总结一下,分享的同