標籤:stl com 技術 很多 規則 搜尋 blog tar param
[From] https://www.cnblogs.com/xiaoBlog2016/p/7076230.html
論述:
此篇部落格是在工作的時候,需要獲得當前網路下面正確的ip地址,在網上查閱很多部落格,網上一個比較普遍的說法是通過InetAddress.getLocalHost().getHostAddress()擷取,但只能夠擷取簡單網路環境下的Ip地址,則忽略IP地址在現在的網路環境更加複雜,比如有Lan,WIFI,藍芽熱點,虛擬機器網卡...
即存在很多的網路介面(network interfaces),每個網路介面就包含一個IP地址,並不是所有的IP地址能被外部或區域網路訪問,比如說虛擬機器網卡地址等等。
也就是說InetAddress.getLocalHost().getHostAddress()的IP不一定是正確的IP。因此,公司的大神,自己編寫測試,並寫成部落格:http://www.cnblogs.com/starcrm/p/7071227.html;而此篇部落格只是在此前提下整理而來
1.明確當前網路的一些規則:
1.1、127.xxx.xxx.xxx 屬於"loopback" 地址,即只能你自己的本機可見,就是本機地址,比較常見的有127.0.0.1;
1.2、192.168.xxx.xxx 屬於private 私人地址(site local address),屬於本機群組織內部訪問,只能在本地區域網路可見。同樣10.xxx.xxx.xxx、從172.16.xxx.xxx 到 172.31.xxx.xxx都是私人地址,也是屬於組織內部訪問;
1.3、169.254.xxx.xxx 屬於串連本地地址(link local IP),在單獨網段可用
1.4、從224.xxx.xxx.xxx 到 239.xxx.xxx.xxx 屬於組播地址
1.5、比較特殊的255.255.255.255 屬於廣播位址
1.6、除此之外的地址就是點對點的可用的公開IPv4地址
2.簡單情況下獲得ip地址: 首先,當你在"百度"或者"bing"中搜尋"JAVA擷取本機ip地址";一般情況下,我們搜尋到的文章或者部落格,只能在單一情況下準確擷取本機IP地址。例如:例如以下幾種情況,即可在下面的部落格中擷取:
2.1:只使用WIFI情況;
2.2:只使用網線的情況
網址:http://www.cnblogs.com/zrui-xyu/p/5039551.html3.擷取複雜網路環境下的Ip地址 源碼如下所示:
public InetAddress getLocalHostLANAddress() throws Exception { try { InetAddress candidateAddress = null; // 遍曆所有的網路介面 for (Enumeration ifaces = NetworkInterface.getNetworkInterfaces(); ifaces.hasMoreElements(); ) { NetworkInterface iface = (NetworkInterface) ifaces.nextElement(); // 在所有的介面下再遍曆IP for (Enumeration inetAddrs = iface.getInetAddresses(); inetAddrs.hasMoreElements(); ) { InetAddress inetAddr = (InetAddress) inetAddrs.nextElement(); if (!inetAddr.isLoopbackAddress()) {// 排除loopback類型地址 if (inetAddr.isSiteLocalAddress()) { // 如果是site-local地址,就是它了 return inetAddr; } else if (candidateAddress == null) { // site-local類型的地址未被發現,先記錄候選地址 candidateAddress = inetAddr; } } } } if (candidateAddress != null) { return candidateAddress; } // 如果沒有發現 non-loopback地址.只能用最次選的方案 InetAddress jdkSuppliedAddress = InetAddress.getLocalHost(); return jdkSuppliedAddress; } catch (Exception e) { e.printStackTrace(); } return null;}
[轉] JAVA從本機擷取IP地址