C# 獲取電腦IP地址方法
public static string GetComputerIP()
? ? ? ? {
? ? ? ? ? ? string ip = "127.0.0.1";
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? string HostName = Dns.GetHostName(); //獲取主機(jī)名
? ? ? ? ? ? ? ? IPHostEntry IpEntry = Dns.GetHostEntry(HostName);
? ? ? ? ? ? ? ? for (int i = 0; i < IpEntry.AddressList.Length; i++)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? if (IpEntry.AddressList[i].AddressFamily == AddressFamily.InterNetwork)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ip = IpEntry.AddressList[i].ToString();
? ? ? ? ? ? ? ? ? ? ? ? return ip;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? return ip;
? ? ? ? ? ? }
? ? ? ? ? ? catch (Exception ex)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? MessageBox.Show("獲取本機(jī)IP異常:" + ex.Message);
? ? ? ? ? ? ? ? return ip;
? ? ? ? ? ? }
? ? ? ? }