C#指定指定端口是否已经被占用的代码

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
下面的C#代码定义了一个函数用于判断指定的端口是否已经被占用。
代码转自: http://www.cnblogs.com/smiler/
public static bool PortInUse(int port)
{
    bool inUse = false;
             
    IPGlobalProperties ipProperties = IPGlobalProperties.GetIPGlobalProperties();
    IPEndPoint[] ipEndPoints = ipProperties.GetActiveTcpListeners();
             
    foreach (IPEndPoint endPoint in ipEndPoints)
    {
        if (endPoint.Port == port)
        {
            inUse = true;
            break;
        }
    }
 
    return inUse;
}

下面的范例代码占用了8080端口,然后用上面定义的函数检测端口是否被占用
static void Main(string[] args)
{
    HttpListener httpListner = new HttpListener();
    httpListner.Prefixes.Add("http://*:8080/");
    httpListner.Start();
 
    Console.WriteLine("Port: 8080 status: " + (PortInUse(8080) ? "in use" : "not in use"));
 
    Console.ReadKey();
 
    httpListner.Close();
}

标签: 代码

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:python让图片按照exif信息里的创建时间进行排序

下一篇:python批量生成本地ip地址