c# 获得局域网主机列表实例

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Net;
using System.Threading;

namespace WindowLanSearch
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
  private System.Windows.Forms.TextBox textBox1;
  private System.Windows.Forms.Button button1;
  private string[,] LanHost;
  private System.Windows.Forms.ProgressBar progressBarSearch;
  private Thread[]  thread;
  private System.Windows.Forms.ListView listView1;
  private System.Windows.Forms.ColumnHeader columnHeader1;
  private System.Windows.Forms.ColumnHeader columnHeader2;
  private string str;
  /// <summary>
  /// 必需的设计器变量。
  /// </summary>
  private System.ComponentModel.Container components = null;

public Form1()
  {
   //
   // Windows 窗体设计器支持所必需的
   //
   InitializeComponent();
   InitLanHost();
   progressBarSearch.Maximum = 255;

//
   // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
   //
  }

/// <summary>
  /// 数组初始化
  /// </summary>
  private void InitLanHost()
  {
   LanHost = new string[255,2];
   for (int i=0;i<255;i++)
   {
    LanHost[i,0] = "";
    LanHost[i,1] = "";
   }
  }

/// <summary>
  /// 清理所有正在使用的资源。
  /// </summary>
  protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
    if (components != null) 
    {
     components.Dispose();
    }
   }
   base.Dispose( disposing );
  }

#region Windows 窗体设计器生成的代码
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {
   this.textBox1 = new System.Windows.Forms.TextBox();
   this.button1 = new System.Windows.Forms.Button();
   this.progressBarSearch = new System.Windows.Forms.ProgressBar();
   this.listView1 = new System.Windows.Forms.ListView();
   this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
   this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
   this.SuspendLayout();
   // 
   // textBox1
   // 
   this.textBox1.Location = new System.Drawing.Point(24, 40);
   this.textBox1.Multiline = true;
   this.textBox1.Name = "textBox1";
   this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
   this.textBox1.Size = new System.Drawing.Size(176, 296);
   this.textBox1.TabIndex = 0;
   this.textBox1.Text = "";
   // 
   // button1
   // 
   this.button1.Location = new System.Drawing.Point(456, 40);
   this.button1.Name = "button1";
   this.button1.TabIndex = 1;
   this.button1.Text = "开始搜索";
   this.button1.Click += new System.EventHandler(this.button1_Click);
   // 
   // progressBarSearch
   // 
   this.progressBarSearch.Location = new System.Drawing.Point(32, 360);
   this.progressBarSearch.Name = "progressBarSearch";
   this.progressBarSearch.Size = new System.Drawing.Size(490, 24);
   this.progressBarSearch.TabIndex = 2;
   // 
   // listView1
   // 
   this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
                      this.columnHeader1,
                      this.columnHeader2});
   this.listView1.Location = new System.Drawing.Point(248, 40);
   this.listView1.Name = "listView1";
   this.listView1.Size = new System.Drawing.Size(184, 288);
   this.listView1.TabIndex = 5;
   // 
   // columnHeader1
   // 
   this.columnHeader1.Text = "dddd";
   // 
   // columnHeader2
   // 
   this.columnHeader2.Text = "sssss";
   // 
   // Form1
   // 
   this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
   this.ClientSize = new System.Drawing.Size(544, 413);
   this.Controls.Add(this.listView1);
   this.Controls.Add(this.progressBarSearch);
   this.Controls.Add(this.button1);
   this.Controls.Add(this.textBox1);
   this.Name = "Form1";
   this.Text = "Form1";
   this.ResumeLayout(false);

}
  #endregion

/// <summary>
  /// 应用程序的主入口点。
  /// </summary>
  [STAThread]
  static void Main() 
  {
   Application.Run(new Form1());
  }
  private void button1_Click(object sender, System.EventArgs e)
  {

LanSearch();

}
  /// <summary>
  /// 局域网搜索事件
  /// </summary>
  private void LanSearch()
  {
   thread = new Thread[255];

ThreadStart threadMethod;

Thread threadProgress = new Thread(new ThreadStart(progressSearch));
   threadProgress.Start();

string localhost = (Dns.GetHostByName(Dns.GetHostName())).AddressList[0].ToString();  //本地主机IP地址
   str = localhost.Substring(0,localhost.LastIndexOf("."));

for (int i=0;i<255;i++)  //建立255个线程扫描IP
   {
    threadMethod = new ThreadStart(LanSearchThreadMethod);
    thread[i] = new Thread(threadMethod);
    thread[i].Name = i.ToString();
    thread[i].Start();
    if (!thread[i].Join(100))    //Thread.Join(100)不知道这处这么用对不对,感觉没什么效果一样
    {
     thread[i].Abort();
    }
   }

GetLanHost();
   listLanHost();
  }
  /// <summary>
  /// 多线程搜索方法
  /// </summary>
  private void LanSearchThreadMethod()
  {
   int Currently_i = Convert.ToUInt16(Thread.CurrentThread.Name);  //当前进程名称

IPAddress ScanIP = IPAddress.Parse( str + "."+Convert.ToString(Currently_i +1));  //获得扫描IP地址
   IPHostEntry ScanHost = null;
   ScanHost = Dns.GetHostByAddress(ScanIP);   //获得扫描IP地址主机信息

if (ScanHost != null)
   {
    LanHost[Currently_i,0] = ScanIP.ToString();
    LanHost[Currently_i,1] = ScanHost.HostName;
   }

//progressBarSearch.Value = progressBarSearch.Value +1;

}
  /// <summary>
  /// 文本框显示主机名与IP列表
  /// </summary>
  private void GetLanHost()
  {
   for (int i=0;i<255;i++)
    if ( LanHost[i,0] !="")
    {
     textBox1.Text =textBox1.Text + LanHost[i,1] +":" +LanHost[i,0] + "\r\n";
    }
  }
  /// <summary>
  /// listview1 显示搜索主机
  /// </summary>
  private void listLanHost()
  {
   listView1.View = View.List;

ListViewItem aa ;
   for (int i=0;i<255;i++)
   {
    if ( LanHost[i,0] !="")
    {
     aa= new ListViewItem();
     aa.Text = LanHost[i,1];
     aa.Tag = LanHost[i,0];
     listView1.Items.Add(aa);
    }
   }

}
  /// <summary>
  /// 进度条处理线程
  /// </summary>
  private void progressSearch()
  {
   //label1.Text = "进度条只是时间估计,不是真实搜索进度!";
   progressBarSearch.Value = 0;
   for (int i=0;i<255;i++)
   {
    progressBarSearch.Value = progressBarSearch.Value + 1;
    Thread.Sleep(100);
   }
  }
}
}

遗憾之处:因搜索较慢,没有实现真实的搜索进度。
不懂之处:实现文字提示时,当在鼠标事件首尾插入
private void button1_Click(object sender, System.EventArgs e)
  {
    lab1.Text = “开始搜索”;      //新插入    
   LanSearch();
    lab1.Text = “结束搜索”;     //新插入
  }
文本提示时,在lab1上始终不能及时显示,而是等所有线程结束后才显示“结束搜索“。

(0)

相关推荐

  • c#调用vc写的ocx控件示例

    在c#中怎样调用VC写的OCX控件,主要有两个关键环节 两个关键环节:导入ocx控件,创建实例. 1 注册ocx: 复制代码 代码如下: regsvr32.exe alasunsmscon.ocx 2 在CMD窗口中执行: 复制代码 代码如下: AxImp.exe alasunsmscon.ocx 生成两个文件:alasun.dll,Axalasun.dll 3 在项目中引用Axalasun.dll 4 调用 复制代码 代码如下: Axalasun.Axalasunsms sms = new A

  • c#后台线程访问前台控件并显示信息示例

    复制代码 代码如下: //设置为后台线程 Thread th = new Thread(delegate() { append();});th.IsBackground = true;th.Start(); //在append方法里面需要调用前台控件 public void append(){ // ... 业务处理 this.Invoke(new flushMessage(showMessage), new object[] { row["Code"].ToString(), res

  • 解析C#自定义控件的制作与使用实例的详解

    上篇:控件制作本例是制作一个简单的自定义控件,然后用一个简单的测试程序,对于初学者来说,本例子比较简单,只能起到抛石引玉的效果.我也是在学习当中,今后会将自己所学的逐步写出来和大家交流共享.第一步:新建一个控件库项目:myControl 第二步:从工具箱里面拖动1个PictureBox.1个Button.6个Lable控件到用户界面上,布局如下: 如上图,设置pictureBox的Name为picBox,背景为白色,Button的Name为btnOpen,另外靠左的三个Lable的Text属性分

  • 浅析c#中WebBrowser控件的使用方法

    首先先来简单介绍一下webbrowser控件,这个控件是可以实现在form窗体中添加网页内容的.如图,我在form中加入了百度api,(百度地图api调用博客里有讲) 使用这个控件其实很简单 (1)第一步只要在form_load中输入 复制代码 代码如下: webBrowser1.Navigate(Application.StartupPath + " /map.html");//引号中为网页代码存放地址,注意要用相对地址不用绝对地址,这样才有可移植性,把网页放到程序的debug目录下

  • C#获得文件属性信息的实现方法

    本文实例演示了用Visual C#获取任意文件的属性信息,这些属性信息包括文件名.创建时间.访问时间.最后写入时间等等.本实例需要用到 FileInfo 类. FileInfo 类用于提供创建.复制.删除.移动和打开文件的实例方法,并且帮助创建 FileStream 对象. 主要功能代码如下: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using Syste

  • C#中跨线程访问控件问题解决方案分享

    net 原则上禁止跨线程访问控件,因为这样可能造成错误的发生,推荐的解决方法是采用代理,用代理方法来间接操作不是同一线程创建的控件. 第二种方法是禁止编译器对跨线程访问作检查,可以实现访问,但是出不出错不敢保证Control.CheckForIllegalCrossThreadCalls = false; 最近我在做一个项目,遇到了跨线程要去访问页面控件.但是总是提示出错,不能在其它线程中修改创建控件的线程的控件的值,后来采用了匿名代理,结果很轻松地解决了.解决过程如下:首先在窗体上,创建一个l

  • C#实现根据指定容器和控件名字获得控件的方法

    本文所述为C#实现根据指定容器和控件名字获得控件的方法,在进行C#应用程序设计时有一定的借鉴价值.分享给大家供大家参考借鉴.具体实现方法如下: 功能代码如下: /// <summary> /// 根据指定容器和控件名字,获得控件 /// </summary> /// <param name="obj">容器</param> /// <param name="strControlName">控件名字</

  • 解决C#中取消方向键对控件焦点控制的实现方法

    在C# winform 应用程序中,对于键盘响应事件,经常使用到"KeyPress"."KeyUp"."KeyDown"事件,可以处理某个按键的自定义处理事件.有时想定义方向键的自定义处理事件时,你可以发现,虽然自定义的处理事件发生了响应,但是也可以看到,按下方向键时,发现窗体上控件的焦点也发生了切换.而这种结果不是我们想要的,我们不想按下方向键时,控件的焦点发生切换,只想响应我们自定义的处理函数即可.下面的方法可以取消方向键对控件焦点的控制:

  • C#分屏控件用法实例

    本文实例中的自定义类PictureBox继承于UserControl,最终实现简单的分屏功能.分享给大家供大家参考之用.具体实现代码如下: public partial class PictureControl : UserControl { public event MouseEventHandler PicControl_DoubleClick; private int picNum; /// <summary> /// 屏幕个数 /// </summary> public i

  • C#控件命名规范汇总(超详细)

    类 型 前 缀 示 例 Adrotator adrt adrtTopAd BulletedList blst blstCity Button btn btnSubmit Calendar cal calMettingDates CheckBox chk chkBlue CheckBoxList chkl chklFavColors DropDownList drop dropCountries FileUpLoad fup fupImage HiddenField hfld hfldName H

  • 浅析c#中如何在form的webbrowser控件中获得鼠标坐标

    如图这样,其实是要插入一个time的控件,这样才能使得坐标值会根据鼠标的移动而不停变化.time插件中写 复制代码 代码如下: private void timer1_Tick(object sender, EventArgs e)        {            if (webBrowser1.Bounds.Contains(this.PointToClient(Cursor.Position)))            { this.toolStripStatusLabel1.Tex

  • c# 控件截图的简单实例

    首先选择保存图片的路径: 复制代码 代码如下: saveFileDialog1.Title = "保存";            saveFileDialog1.Filter = "*.png|*.png";            saveFileDialog1.RestoreDirectory = true;            if (saveFileDialog1.ShowDialog() == DialogResult.OK)            {  

  • C#获得MAC地址(网卡序列号)的实现代码

    代码如下: 复制代码 代码如下: //获得网卡序列号    public string GetMoAddress()    {        string MoAddress = " ";        ManagementClass mc = new ManagementClass("Win32_NetworkAdapterConfiguration");        ManagementObjectCollection moc2 = mc.GetInstanc

随机推荐