[轉] JAVA從本機擷取IP地址

來源:互聯網
上載者:User

標籤: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地址

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.