我想在运行我的应用程序的电脑上获取蓝牙设备的mac地址。

我尝试了以下内容:

private void GetMacAddress()
{
     string macAddresses = "";
     foreach (NetworkInterface nic in NetworkInterface.GetAllNetworkInterfaces())
     {
          if (nic.OperationalStatus == OperationalStatus.Up)
          {
               macAddresses += nic.GetPhysicalAddress().ToString();
               Console.WriteLine(macAddresses);
          }
     }
}

但输出与commandprompt中的'ipconfig / all'不匹配。它不会打印我的blueotths mac地址。 任何解决方案?

我准备解析我从'ipconfig / all'得到的输出但是如何将输出作为字符串?

有帮助吗?

解决方案

您可以使用WMI来获得结果。这是指向通过网络设备的WMI解决方案的链接。

我在这里发布代码以防网站出现故障,但所有功劳都归原作者PsychoCoder所有。 使用WMI在C#中获取MAC地址

代码:

//Namespace reference
using System.Management;

/// <summary>
/// Returns MAC Address from first Network Card in Computer
/// </summary>
/// <returns>MAC Address in string format</returns>
public string FindMACAddress()
{
    //create out management class object using the
    //Win32_NetworkAdapterConfiguration class to get the attributes
    //af the network adapter
    ManagementClass mgmt = new ManagementClass("Win32_NetworkAdapterConfiguration");
    //create our ManagementObjectCollection to get the attributes with
    ManagementObjectCollection objCol = mgmt.GetInstances();
    string address = String.Empty;
    //My modification to the code
    var description = String.Empty;
    //loop through all the objects we find
    foreach (ManagementObject obj in objCol)
    {
        if (address == String.Empty)  // only return MAC Address from first card
        {
            //grab the value from the first network adapter we find
            //you can change the string to an array and get all
            //network adapters found as well
            if ((bool)obj["IPEnabled"] == true)
            {
                address = obj["MacAddress"].ToString();
                description = obj["Description"].ToString();
            }
        }
       //dispose of our object
       obj.Dispose();
    }
    //replace the ":" with an empty space, this could also
    //be removed if you wish
    address = address.Replace(":", "");
    //return the mac address
    return address;
}

请务必包含对System.Management的引用。 为了获得网络设备名称,可以使用obj["Description"].ToString();

您还可以查看有关WMI的MSDN,特别是 Win32_NetworkAdapterConfiguration类

希望这有帮助。

其他提示

public static PhysicalAddress GetBTMacAddress()  {

    foreach (NetworkInterface nic in NetworkInterface.GetAllNetworkInterfaces()) {

        // Only consider Bluetooth network interfaces
        if (nic.NetworkInterfaceType != NetworkInterfaceType.FastEthernetFx && 
            nic.NetworkInterfaceType != NetworkInterfaceType.Wireless80211){

            return nic.GetPhysicalAddress();
        }
    }
    return null;
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top