转自论坛: http://topic.csdn.net/u/20100603/13/ef349c6e-66ee-4129-a884-61c9091a9a99.html

using System.Net.NetworkInformation;

/// <summary>
/// 获取第一个可用的端口号
/// </summary>
/// <returns></returns>
public static int GetFirstAvailablePort()
{
int MAX_PORT = 6000; //系统tcp/udp端口数最大是65535
int BEGIN_PORT = 5000;//从这个端口开始检测

for (int i = BEGIN_PORT; i < MAX_PORT; i++)
{
if (PortIsAvailable(i)) return i;
}

return -1;
}

/// <summary>
/// 获取操作系统已用的端口号
/// </summary>
/// <returns></returns>
public static IList PortIsUsed()
{
//获取本地计算机的网络连接和通信统计数据的信息
IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties();

//返回本地计算机上的所有Tcp监听程序
IPEndPoint[] ipsTCP = ipGlobalProperties.GetActiveTcpListeners();

//返回本地计算机上的所有UDP监听程序
IPEndPoint[] ipsUDP = ipGlobalProperties.GetActiveUdpListeners();

//返回本地计算机上的Internet协议版本4(IPV4 传输控制协议(TCP)连接的信息。
TcpConnectionInformation[] tcpConnInfoArray = ipGlobalProperties.GetActiveTcpConnections();

IList allPorts = new ArrayList();
foreach (IPEndPoint ep in ipsTCP) allPorts.Add(ep.Port);
foreach (IPEndPoint ep in ipsUDP) allPorts.Add(ep.Port);
foreach (TcpConnectionInformation conn in tcpConnInfoArray) allPorts.Add(conn.LocalEndPoint.Port);

return allPorts;
}

/// <summary>
/// 检查指定端口是否已用
/// </summary>
/// <param name="port"></param>
/// <returns></returns>
public static bool PortIsAvailable(int port)
{
bool isAvailable = true;

IList portUsed = PortIsUsed();

foreach (int p in portUsed)
{
if (p == port)
{
isAvailable = false; break;
}
}

return isAvailable; C# 判断 端口 是否被占用 命名空间System.Net.NetworkInformation下定义了一个名为IPGlobalProperties的类,我们使用这个类可以获取所有的监听连接,然后判断 端口 是否被占用,代码如下: using System.Net.NetworkInformation; using System.Net; public static bool PortInUse(int port) bool inUse = false; IPGlobalProperties int result; int i = 0; result = RegOpenKeyEx(HKEY_LOCAL_MACHINE,"Hardware\\DeviceMap\\SerialComm", NULL,KEY_READ,&.. <br />/// <summary><br />        /// 获取第一个 可用 端口 号<br />        /// </summary><br />        /// <returns></returns><br />        public static int GetFirstAvailablePort()<br />        {<br />            int MAX_PORT = 65535; //系统tcp/udp 端口 数最大是65535            bool inUse = false; IPGlobalProperties ipProperties = IPGlobalProperties.GetIPGlobalProperties(); IPEndPoint[] ipEndPoints = ipProperties.GetActiveTcpListeners();//IP 端口 ... 转自论坛:http://topic.csdn.net/u/20100603/13/ef349c6e-66ee-4129-a884-61c9091a9a99.html using System.Net.NetworkInformation; /// <summary> /// 获取第一个 可用 端口 号 /// </summary> /// <returns&... 1、80 端口 ,HTTP说明:用于网页浏览。其中漏洞木马Executor开放此 端口 。 2、1433 端口 ,SQL说明:Microsoft的SQL服务开放 端口 3、4000 端口 ,QQ客户端说明:腾讯QQ客户端开放此 端口 。 4、8000 端口 ,OICQ说明:腾讯服务器端开放此 端口 。 5、8080 端口 ,代理 端口 :www代理开放此 端口 。 IIS(HTTP):80 SQLServer:1433 Oracle:1521 MySQL:3306 FTP:21 SSH:22 Tomcat:8080