基本信息
源码名称:单线程IP地址扫描
源码大小:0.88M
文件格式:.rar
开发语言:C#
更新时间:2020-06-06
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍
设计方法完成单个IP地址解析,循环调用方法,完成扫描

        private void b1_Click(object sender, RoutedEventArgs e)
        {
            int a = int.Parse(t2.Text);
            int b = int.Parse(t3.Text);
            for (int i = a; i <= b; i )
            {
                Stopwatch sw = new Stopwatch();
                sw.Restart();
                string str1 = t1.Text i.ToString();
                try
                {
                    IPAddress iP = IPAddress.Parse(str1);
                    IPHostEntry iPHost = Dns.GetHostEntry(iP);
                    string name = iPHost.HostName;
                    sw.Stop();
                    long times = sw.ElapsedMilliseconds;
                    string str2 = "扫描地址:" str1;
                    string str3 = "扫描用时:" times "ms";
                    string str4 = "主机DNS名称:" name;
                    list1.Items.Add(str2 "," str3 "," str4);
                }
                catch (Exception)
                {
                    sw.Stop();
                    long times = sw.ElapsedMilliseconds;
                    string str2 = "扫描地址:" str1;
                    string str3 = "扫描用时:" times "ms";
                    string str4 = "主机DNS名称:(不在线)";
                    list1.Items.Add(str2 "," str3 "," str4);
                }
            }
        }