码迷,mamicode.com
首页 > 编程语言 > 详细

Linux下用Java获取本机IP

时间:2018-04-18 20:09:03      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:break   cep   ati   nbsp   ||   continue   tst   enum   while   

可能有多个网卡包括虚拟网卡,需要进行排除

String ip = "";
try {
    Enumeration<?> e1 = NetworkInterface.getNetworkInterfaces();//获取多个网卡
    while (e1.hasMoreElements()) {
    NetworkInterface ni = (NetworkInterface) e1.nextElement();

    if(("eth0").equals(ni.getName()) || ("ens33").equals(ni.getName())){//取“eth0”和“ens33”两个网卡
        Enumeration<?> e2 = ni.getInetAddresses();
        while (e2.hasMoreElements()) {
          InetAddress ia = (InetAddress) e2.nextElement();
          if (ia instanceof Inet6Address) {//排除IPv6地址
              continue;
          }
          ip = ia.getHostAddress();
          }
          break;
      }
    }
} catch (SocketException e) {
    e.printStackTrace();
}

 

Linux下用Java获取本机IP

标签:break   cep   ati   nbsp   ||   continue   tst   enum   while   

原文地址:https://www.cnblogs.com/jugglee/p/8877011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!