170709-Java實現獲取本機Ip工具類

logo

180709-Java實現獲取本機Ip的工具類

獲取本機Ip算是比較常見的一個需求場景了,好比業務報警,可能就會帶上出問題的機器IP,方便直接上去看日誌定位問題,那麼問題來了,如何獲取機器IP呢?java

<!-- more -->git

I. IpUtil工具類

1. 基本方法

如何獲取機器Ip?若是瞭解InetAddress這個工具類,就很容易寫出一個簡單的工具類,以下github

public static String getLocalIP() {
    try {
        return InetAddress.getLocalHost().getHostAddress();
    } catch (UnknownHostException e) {
        throw new RuntimeException(e);
    }
}

上面的實現有問題麼?服務器

固然沒問題,拿我本機和阿里服務器執行一下,並無問題如實的輸出了預期的IP工具

本機執行後截圖以下:oop

本機

阿里雲機器執行後截圖以下:學習

阿里雲

再問一句,那是否就真的沒有問題了呢?測試

  • 在某些狀況下,可能返回的是 127.0.0.1

在虛擬機中執行時,就可能遇到這個問題,截圖以下阿里雲

虛擬機

2. 進階版

作一點簡單的改動,獲取IpV4的地址,源碼以下.net

/**
 * 直接根據第一個網卡地址做爲其內網ipv4地址,避免返回 127.0.0.1
 *
 * @return
 */
public static String getLocalIpByNetcard() {
    try {
        for (Enumeration<NetworkInterface> e = NetworkInterface.getNetworkInterfaces(); e.hasMoreElements(); ) {
            NetworkInterface item = e.nextElement();
            for (InterfaceAddress address : item.getInterfaceAddresses()) {
                if (item.isLoopback() || !item.isUp()) {
                    continue;
                }
                if (address.getAddress() instanceof Inet4Address) {
                    Inet4Address inet4Address = (Inet4Address) address.getAddress();
                    return inet4Address.getHostAddress();
                }
            }
        }
        return InetAddress.getLocalHost().getHostAddress();
    } catch (SocketException | UnknownHostException e) {
        throw new RuntimeException(e);
    }
}

再次測試,輸出以下

虛擬機

3. 完整工具類

import java.net.*;
import java.util.Enumeration;

public class IpUtil {
    public static final String DEFAULT_IP = "127.0.0.1";

    /**
     * 直接根據第一個網卡地址做爲其內網ipv4地址,避免返回 127.0.0.1
     *
     * @return
     */
    public static String getLocalIpByNetcard() {
        try {
            for (Enumeration<NetworkInterface> e = NetworkInterface.getNetworkInterfaces(); e.hasMoreElements(); ) {
                NetworkInterface item = e.nextElement();
                for (InterfaceAddress address : item.getInterfaceAddresses()) {
                    if (item.isLoopback() || !item.isUp()) {
                        continue;
                    }
                    if (address.getAddress() instanceof Inet4Address) {
                        Inet4Address inet4Address = (Inet4Address) address.getAddress();
                        return inet4Address.getHostAddress();
                    }
                }
            }
            return InetAddress.getLocalHost().getHostAddress();
        } catch (SocketException | UnknownHostException e) {
            throw new RuntimeException(e);
        }
    }

    public static String getLocalIP() {
        try {
            return InetAddress.getLocalHost().getHostAddress();
        } catch (UnknownHostException e) {
            throw new RuntimeException(e);
        }
    }
}

II. 其餘

1. 一灰灰Bloghttps://liuyueyi.github.io/hexblog

一灰灰的我的博客,記錄全部學習和工做中的博文,歡迎你們前去逛逛

2. 聲明

盡信書則不如,已上內容,純屬一家之言,因我的能力有限,不免有疏漏和錯誤之處,如發現bug或者有更好的建議,歡迎批評指正,不吝感激

3. 掃描關注

QrCode

相關文章
相關標籤/搜索