博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java获取windows和linux下本机ip通用方法
阅读量:4955 次
发布时间:2019-06-12

本文共 1087 字,大约阅读时间需要 3 分钟。

public  InetAddress getFirstNonLoopbackAddress(boolean preferIpv4, boolean preferIPv6) throws SocketException {        Enumeration en = NetworkInterface.getNetworkInterfaces();        while (en.hasMoreElements()) {            NetworkInterface i = (NetworkInterface) en.nextElement();            for (Enumeration en2 = i.getInetAddresses(); en2.hasMoreElements();) {                InetAddress addr = (InetAddress) en2.nextElement();                if (!addr.isLoopbackAddress()) {                    if (addr instanceof Inet4Address) {                        if (preferIPv6) {                            continue;                        }                        return addr;                    }                    if (addr instanceof Inet6Address) {                        if (preferIpv4) {                            continue;                        }                        return addr;                    }                }            }        }        return null;    }

调用方法:

getFirstNonLoopbackAddress(true,false).getHostAddress();

 

转载于:https://www.cnblogs.com/penghq/p/9466801.html

你可能感兴趣的文章
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
LUOGU P2986 [USACO10MAR]伟大的奶牛聚集Great Cow Gat…
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
Haskell学习-高阶函数
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
链接元素<a>
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>
第二章:webdriver 控制浏览器窗口大小
查看>>
【动态规划】流水作业调度问题与Johnson法则
查看>>
Python&Selenium&Unittest&BeautifuReport 自动化测试并生成HTML自动化测试报告
查看>>