gpt4 book ai didi

c# - 如何从字符串中分离数据

转载 作者:太空宇宙 更新时间:2023-11-03 12:30:54 25 4
gpt4 key购买 nike

<分区>

我正在尝试获取我的网络上连接的所有计算机的列表,并且我能够这样做。

但是我需要获取我以字符串格式存储的 IP 地址的 Hostanme 以及一些其他数据,如 mac 地址。

我试过使用 json 但无法从字符串中获取 Ip 列表。我只是从字符串中获取 ip 列表,以便使用 Foreach 我可以找到特定的主机名。

代码如下:

  static void Main(String[] args)
{
Process arp = new Process();
arp.StartInfo.UseShellExecute = false;
arp.StartInfo.RedirectStandardOutput = true;
arp.StartInfo.FileName = "C://Windows//System32//cmd.exe";
arp.StartInfo.Arguments = "/c arp -a";
arp.StartInfo.RedirectStandardOutput = true;
arp.Start();
arp.WaitForExit();
string output = arp.StandardOutput.ReadToEnd();
Console.WriteLine(output);

Console.WriteLine(data.Internet_Address);
Console.ReadLine();
}
}

这是输出:

enter image description here

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com