首页 > Windows开发 > 详细

C# 查看计算机端口使用状态

时间:2015-07-25 07:02:52      阅读:715      评论:0      收藏:0      [点我收藏+]
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# 查看计算机端口使用状态

原文:http://www.cnblogs.com/Kconnie/p/4675153.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!