Linux伊甸园论坛's Archiver

yxying 发表于 2007-7-30 10:05

如何获取 网卡IP

请教各位,import java.net.*;
public  class ww
{
public static void main(String[] args)
{
    String addr = null;
       try
         {
          InetAddress destAddr = InetAddress.getLocalHost();
          addr = destAddr.getHostAddress();
        }
      catch (Exception e)
        {
          System.out.print("error");
        }
   System.out.print(addr);
}
}
只能获取主机IP,无法获取网卡IP。网卡IP在哪个文件呢 ?

yxying 发表于 2007-7-31 09:14

解决了 ,不过 是通过执行命令获取的,感觉有点繁琐

页: [1]

Powered by Discuz! Archiver 6.1.0  © 2001-2007 Comsenz Inc.