C#Socket通信

服务端

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
using System.Threading.Tasks;

namespace Socket通信服务器
{
    class Program
    {
        static void Main(string[] args)
        {
            //创建socket//第一个是地址(目前是内网),第二个表示以什么做通信(流) 第三个协议
            Socket tcpServe = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
          //2.绑定IP跟端口号
            IPAddress ipaddress = new IPAddress(new byte[]{127,0,0,1});
            EndPoint point = new IPEndPoint(ipaddress,7788);//ipendpoint是对ip和端口号的封装类
            tcpServe.Bind(point);//向操作系统申请一个ip和端口号
            //3开始监听(等待客户端连接)
            tcpServe.Listen(100);//参数是最大连接数

            Socket clientScoket= tcpServe.Accept();//暂停当前线程,知道一个客户端连接进来,进行下一个代码
            //使用返回的socket与客户端进行通讯
            string message = "欢迎你";
            byte[] data=Encoding.UTF8.GetBytes(message);//得到二进制数据
            clientScoket.Send(data);//发送消息
        }
    }
}

客户端

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;

namespace Socke通信客户端
{
    class Program
    {
        static void Main(string[] args)
        {
            //1.创建socket
            Socket tcpClint = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
            //2.发起建立连接的请求
            IPAddress ipaddress = IPAddress.Parse("127.0.0.1");//可以把字符串的ip地址转化为ipadress的对象
            EndPoint point = new IPEndPoint(ipaddress, 7788);
            tcpClint.Connect(point);//通过ip:端口号建立连接
            //3.接受信息
            byte[] data = new byte[1024];//这个用来存接受的东西
            int length = tcpClint.Receive(data);//返回接受的字节数
            string message = Encoding.UTF8.GetString(data, 0, length);
            Console.WriteLine(message);
            //4.向服务器发消息
            string message2 = Console.ReadLine();//用户的输入
            tcpClint.Send(Encoding.UTF8.GetBytes(message2));



        }
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Zero游戏开发

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值