获取PC或移动设备的所有IP地址

不论是PC还是移动设备,都有可能同时存在几个IP地址(如具有多块网卡),本文介绍怎样获得PC或移动设备的所有IP地址。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 获得所有IP地址
public static void get_ip(){
       
      String address;
      Enumeration netInterfaces;
      NetworkInterface ni;
      Enumeration cardipaddress;
      InetAddress ip;
       
      try
      {
          netInterfaces = NetworkInterface.getNetworkInterfaces();       
          while (netInterfaces.hasMoreElements())
          {
              ni = (NetworkInterface) netInterfaces.nextElement();                     
              cardipaddress = ni.getInetAddresses();
              while (cardipaddress.hasMoreElements())
              {
                  ip = (InetAddress) cardipaddress.nextElement();
                  if(!ip.getHostAddress().equalsIgnoreCase("127.0.0.1") )
                  {
                            address = ip.getHostAddress();
                            c_lip.addItem(address);
                  }
              }
          }
      }
      catch (Exception e)
      {
 
      }
       
}

首先,用NetworkInterface的getNetworkInterfaces()获得所有的NetworkInterfaces,对每一个NetworkInterface,再用getInetAddresses()获得它的IP地址,对于非127.0.0.1的地址,将其加入列表框中。

PC的运行结果如下:

posted @   MSTK  阅读(1397)  评论(6编辑  收藏  举报
编辑推荐:
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
点击右上角即可分享
微信分享提示