Java獲取本機ip地址

yanke_shanghai發表於2016-05-18

Windows檢視本機ip地址:

  • Window + R開啟,輸入cmd開啟cmd命令視窗。
  • 輸入ipconfig後按回車。
    這裡寫圖片描述

在程式中使用java獲取本機ip地址程式碼如下:


import java.net.Inet4Address;
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.List;

public final class IPUtil {

    private IPUtil() {}

    /**
     * 取到當前機器的IP地址
     * @return
     */
    public static String getIp() {
        String hostIp;
        List<String> ips = new ArrayList<>();
        Enumeration<NetworkInterface> netInterfaces;
        try {
            //返回此機器上的所有介面。
            netInterfaces = NetworkInterface.getNetworkInterfaces();
            //測試此列舉是否包含更多的元素。
            while (netInterfaces.hasMoreElements()) {
                //返回此列舉的下一個元素。
                NetworkInterface netInterface = netInterfaces.nextElement();
                //返回一個具有繫結到此網路介面全部或部分 InetAddress 的 Enumeration。
                Enumeration<InetAddress> inetAddresses = netInterface.getInetAddresses();
                while (inetAddresses.hasMoreElements()) {
                    InetAddress inetAddress = inetAddresses.nextElement();
                    //非本地環回介面 && IPV4
                    if (!inetAddress.isLoopbackAddress() && inetAddress instanceof Inet4Address) {
                        //返回 IP 地址字串(以文字表現形式)。
                        ips.add(inetAddress.getHostAddress());
                    }
                }
            }
        } catch (SocketException ex) {
            ex.printStackTrace();
        }
        hostIp = collectionToDelimitedString(ips, ",");
        return hostIp;
    }

    private static String collectionToDelimitedString(Collection<String> coll, String delim) {
        if (coll == null || coll.isEmpty()) {
            return "";
        }
        StringBuilder sb = new StringBuilder();
        Iterator<?> it = coll.iterator();
        while (it.hasNext()) {
            sb.append(it.next());
            if (it.hasNext()) {
                sb.append(delim);
            }
        }
        return sb.toString();
    }

    /**
     * 獲取主機名稱
     * @return
     */
    public static String getHostName() {
        String hostName = null;
        try {
            hostName = InetAddress.getLocalHost().getHostName();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return hostName;
    }
    public static void main(String[] args) {
        System.out.println(IPUtil.getIp());
        System.out.println(IPUtil.getHostName());
    }
}

測試結果:
192.168.1.107
DESKTOP-OM1F3ML

相關文章