900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > c# 计算机ip C# 获取电脑的IP 网关 MAC 计算机名。。

c# 计算机ip C# 获取电脑的IP 网关 MAC 计算机名。。

时间:2019-07-25 02:33:09

相关推荐

c# 计算机ip C# 获取电脑的IP 网关 MAC 计算机名。。

【实例简介】

【实例截图】

【核心代码】

using System;

using System.Collections.Generic;

using ponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using ;

using .Sockets;

using workInformation;

namespace GetIPAd

{

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();

}

private void button1_Click(object sender, EventArgs e)

{

string HostName = Dns.GetHostName();

IPHostEntry IpEntry = Dns.GetHostEntry(HostName);

for (int i = 0; i < IpEntry.AddressList.Length; i )

{

//从IP地址列表中筛选出IPv4类型的IP地址

//AddressFamily.InterNetwork表示此IP为IPv4,

//AddressFamily.InterNetworkV6表示此地址为IPv6类型

if (IpEntry.AddressList[i].AddressFamily == AddressFamily.InterNetwork)

{

//MessageBox.Show(IpEntry.AddressList[i].ToString());

textBox1.Text = IpEntry.AddressList[i].ToString();

textBox2.Text = HostName;

}

}

NetworkInterface[] networkInterface = NetworkInterface.GetAllNetworkInterfaces();

foreach (NetworkInterface adapter in networkInterface)

{

listBox1.Items.Add("描述------------:" adapter.Description);

listBox1.Items.Add("网络适配器的名称:" adapter.Description);

listBox1.Items.Add("接口类型--------:" workInterfaceType);

listBox1.Items.Add("状态------------:" adapter.OperationalStatus);

PhysicalAddress address = adapter.GetPhysicalAddress();

byte[] bytes = address.GetAddressBytes();

listBox1.Items.Add("MAC-------------:");

for (int i = 0; i < bytes.Length; i )

{

listBox1.Items.Add(bytes[i].ToString("X2"));

if (i != bytes.Length - 1)

{

listBox1.Items.Add("-");

}

}

}

}

public static void ShowNetwork()

{

NetworkInterface[] networkInterface =

NetworkInterface.GetAllNetworkInterfaces();

foreach (NetworkInterface adapter in networkInterface)

{

Console.WriteLine("描述------------:" adapter.Description);

Console.WriteLine("网络适配器的名称:" adapter.Name);

Console.WriteLine("接口类型--------:" workInterfaceType);

Console.WriteLine("状态------------:" adapter.OperationalStatus);

PhysicalAddress address = adapter.GetPhysicalAddress();

byte[] bytes = address.GetAddressBytes();

Console.Write("MAC-------------:");

for (int i = 0; i < bytes.Length; i )

{

Console.Write("{0}", bytes[i].ToString("X2"));

if (i != bytes.Length - 1)

{

Console.Write("-");

}

}

Console.WriteLine();

Console.WriteLine("=======分割线=========");

Console.WriteLine();

}

}

}

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。