获取本机所有IP地址的方法

时间:2025-01-22 07:22:50

获取本机所有IP地址的方法
    包中的IP地址类InetAddress提供了可以获取本机IP地址的方法getLocalHost(),但是通过该方法只能获得第一个网络设备的IP地址。但是InetAddress提供了getAllByName(String host),可以通过主机名获取所有IP地址。下面就是获取本机所有IP地址的源码。

/*
 *
 * Created on 2004-9-29
 * Copyright:
 */
import ;

/**
 * @author yanpeng
 *
 * 
 */
public class NetTools {

 public static String getLocalHostIP(){
  String ip;
  try{
   InetAddress addr = ();
   ip = ();
  }
  catch(Exception ex){
   ip = "";
  }
  return ip;
 }
 
 public static String getLocalHostName(){
  String hostName;
  try{
   InetAddress addr = ();
   hostName = ();
  }
  catch(Exception ex){
   hostName = "";
  }
  return hostName;
 }
 
 public static String[] getAllLocalHostIP(){
  String[] ret = null;
  try{
   String hostName = getLocalHostName();
   if(()>0){
    InetAddress[] addrs = (hostName);
    if(>0){
     ret = new String[];
     for(int i=0 ; i< ; i++){
      ret[i] = addrs[i].getHostAddress();
     }
    }
   }
   
  }
  catch(Exception ex){
   ret = null;
  }
  return ret;
 }

 public static String[] getAllHostIPByName(String hostName){
  String[] ret = null;
  try{
   if(()>0){
    InetAddress[] addrs = (hostName);
    if(>0){
     ret = new String[];
     for(int i=0 ; i< ; i++){
      ret[i] = addrs[i].getHostAddress();
     }
    }
   }
   
  }
  catch(Exception ex){
   ret = null;
  }
  return ret;
 }
 
 
 public static void main(String[] args) {
  //(getLocalHostIP());
  ("主机名:" + getLocalHostName());
  
  String[] localIP = getAllLocalHostIP();
  for(int i=0 ; i< ; i++){
   ( localIP[i]);
  }
 }
}