zoukankan      html  css  js  c++  java
  • 获取MAC地址

    public static string GetMacByIPConfig()
    {
    string sMac = string.Empty;
    ProcessStartInfo startInfo = new ProcessStartInfo("ipconfig", "/all");
    startInfo.UseShellExecute = false;
    startInfo.RedirectStandardInput = true;
    startInfo.RedirectStandardOutput = true;
    startInfo.RedirectStandardError = true;
    startInfo.CreateNoWindow = true;
    Process p = Process.Start(startInfo);
    //截取输出流
    StreamReader reader = p.StandardOutput;
    string line = reader.ReadLine();

    while (!reader.EndOfStream)
    {
    if (!string.IsNullOrEmpty(line))
    {
    line = line.Trim();

    if (line.StartsWith("Physical Address") || line.StartsWith("物理地址"))
    {
    sMac = line.Substring(line.IndexOf(":") + 1, line.Length - line.IndexOf(":") - 1).Replace("-", ":");
    break;
    }
    }

    line = reader.ReadLine();
    }

    //等待程序执行完退出进程
    p.WaitForExit();
    p.Close();
    reader.Close();

    return sMac.Trim();
    }

  • 相关阅读:
    第三次上机练习
    第三次作业
    第二次上级练习
    第二次作业
    第一次上机练习
    第一次作业
    4.20
    4.16
    4.10
    4.9
  • 原文地址:https://www.cnblogs.com/sunlunhao/p/5157871.html
Copyright © 2011-2022 走看看