理论什么的bilibala的就是自己百度吧
推荐一篇不错的关于socket的文章
http://www.cnblogs.com/sunway/archive/2010/01/29/1659074.html
其实我也只是刚刚完成了端口监听这一项,其实主要就是获取本地的IP地址
IPAddress myIP;
string ipString = Dns.GetHostEntry(Dns.GetHostName()).AddressList[].ToString();//获取本机IP地址
myIP = IPAddress.Parse(ipString);
其中有些问题就是AddressList[]的问题,刚开始一直写的是AddressList[0],结果每次取得的都是错误的IP,最后查资料才知道0是IPv6的格式,而1是IPv4的格式,这样才把主要问题给解决了。
最后附上全部代码吧
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.Threading;
using System.Net.Sockets; namespace socket测试WinForm
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
IPAddress myIP;
private void button1_Click(object sender, EventArgs e)
{
try
{
IPHostEntry entry = new IPHostEntry();
string ipString = Dns.GetHostEntry(Dns.GetHostName()).AddressList[].ToString();//获取本机IP地址
myIP = IPAddress.Parse(ipString);
txtState.Text = "";
txtState.AppendText("主机开始监听.....\r\n");
TcpListener listener = new TcpListener(myIP ,Convert.ToInt32(textBox2.Text));
listener.Start();
}
catch(Exception ez)
{
MessageBox.Show(ez.Message, "提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
return;
}
}
}
}
有不足的还请大家指正吧