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

Java 获取当前环境Windows/Linux 真实IP

时间:2018-03-01 17:28:57      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:alt   public   win   amp   ack   exception   splay   str   none   

技术分享图片
public static String getCurrentIp() {
        try {
            Enumeration<NetworkInterface> networkInterfaces = NetworkInterface.getNetworkInterfaces();
            while (networkInterfaces.hasMoreElements()) {
                NetworkInterface ni = (NetworkInterface) networkInterfaces.nextElement();
                Enumeration<InetAddress> nias = ni.getInetAddresses();
                while (nias.hasMoreElements()) {
                    InetAddress ia = (InetAddress) nias.nextElement();
                    if (!ia.isLinkLocalAddress() && !ia.isLoopbackAddress() && ia instanceof Inet4Address) {
                        return ia.toString();
                    }
                }
            }
        } catch (SocketException e) {
            System.out.println("Fail to get currentIp.");
        }
        return null;
    }
当前IP

 

Java 获取当前环境Windows/Linux 真实IP

标签:alt   public   win   amp   ack   exception   splay   str   none   

原文地址:https://www.cnblogs.com/codegod/p/8488350.html

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