获取PC或移动设备的所有IP地址_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 获取PC或移动设备的所有IP地址

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

 2013/12/3 23:26:00  MSTK  博客园  我要评论(0)
  • 摘要:不论是PC还是移动设备,都有可能同时存在几个IP地址(如具有多块网卡),本文介绍怎样获得PC或移动设备的所有IP地址。//获得所有IP地址publicstaticvoidget_ip(){Stringaddress;EnumerationnetInterfaces;NetworkInterfaceni;Enumerationcardipaddress;InetAddressip;try{netInterfaces=NetworkInterface.getNetworkInterfaces()
  • 标签:设备

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

class="brush:java;gutter:true;">  // 获得所有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的运行结果如下:

发表评论
用户名: 匿名