91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java獲取本機IP地址的代碼怎么寫

發布時間:2022-05-05 10:49:02 來源:億速云 閱讀:436 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“Java獲取本機IP地址的代碼怎么寫”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Java獲取本機IP地址的代碼怎么寫”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

前言

在Java中如何準確的獲取到本機IP地址呢?網上大部分的做法是InetAddress.getLocalHost().getHostAddress()。這的確能獲取到本機IP地址,但是是不準確的。因為忽略了一個問題,網絡環境是多變的,一臺計算機不同的網卡有多個IP地址,Lan、WiFi、藍牙、熱點、虛擬機網卡等。

一、規則

  • 127.xxx.xxx.xxx 屬于 “loopback” 地址,即只能你自己的本機可見,就是本機地址,比較常見的有 127.0.0.1

  • 192.168.xxx.xxx 屬于 private 私有地址 (site local address),屬于本地組織內部訪問,只能在本地局域網可見

  • 同樣 10.xxx.xxx.xxx、從 172.16.xxx.xxx 到172.31.xxx.xxx 都是私有地址,也是屬于組織內部訪問

  • 169.254.xxx.xxx 屬于連接本地地址(link local IP),在單獨網段可用

  • 從 224.xxx.xxx.xxx 到 239.xxx.xxx.xxx 屬于組播地址

  • 比較特殊的 255.255.255.255 屬于廣播地址

  • 除此之外的地址就是點對點的可用的公開 IPv4 地址

二、獲取

1.使用

 public static void main(String[] args) throws SocketException {
        System.out.println( IpUtil.getLocalIp4Address().get().toString().replaceAll("/",""));
    }

2.工具類

package com.dingwen.test.utils;
import org.springframework.util.ObjectUtils;
import java.net.*;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.Optional;
/**
 * 獲取本機IP 地址
 *
 * @author dingwen
 * 2021.04.28 11:49
 */
public class IpUtil {
    /*
     * 獲取本機所有網卡信息   得到所有IP信息
     * @return Inet4Address>
     */
    public static List<Inet4Address> getLocalIp4AddressFromNetworkInterface() throws SocketException {
        List<Inet4Address> addresses = new ArrayList<>(1);
        // 所有網絡接口信息
        Enumeration<NetworkInterface> networkInterfaces = NetworkInterface.getNetworkInterfaces();
        if (ObjectUtils.isEmpty(networkInterfaces)) {
            return addresses;
        }
        while (networkInterfaces.hasMoreElements()) {
            NetworkInterface networkInterface = networkInterfaces.nextElement();
            //濾回環網卡、點對點網卡、非活動網卡、虛擬網卡并要求網卡名字是eth或ens開頭
            if (!isValidInterface(networkInterface)) {
                continue;
            }
            // 所有網絡接口的IP地址信息
            Enumeration<InetAddress> inetAddresses = networkInterface.getInetAddresses();
            while (inetAddresses.hasMoreElements()) {
                InetAddress inetAddress = inetAddresses.nextElement();
                // 判斷是否是IPv4,并且內網地址并過濾回環地址.
                if (isValidAddress(inetAddress)) {
                    addresses.add((Inet4Address) inetAddress);
                }
            }
        }
        return addresses;
    }
    /**
     * 過濾回環網卡、點對點網卡、非活動網卡、虛擬網卡并要求網卡名字是eth或ens開頭
     *
     * @param ni 網卡
     * @return 如果滿足要求則true,否則false
     */
    private static boolean isValidInterface(NetworkInterface ni) throws SocketException {
        return !ni.isLoopback() && !ni.isPointToPoint() && ni.isUp() && !ni.isVirtual()
                && (ni.getName().startsWith("eth") || ni.getName().startsWith("ens"));
    }
    /**
     * 判斷是否是IPv4,并且內網地址并過濾回環地址.
     */
    private static boolean isValidAddress(InetAddress address) {
        return address instanceof Inet4Address && address.isSiteLocalAddress() && !address.isLoopbackAddress();
    }
    /*
     * 通過Socket 唯一確定一個IP
     * 當有多個網卡的時候,使用這種方式一般都可以得到想要的IP。甚至不要求外網地址8.8.8.8是可連通的
     * @return Inet4Address>
     */
    private static Optional<Inet4Address> getIpBySocket() throws SocketException {
        try (final DatagramSocket socket = new DatagramSocket()) {
            socket.connect(InetAddress.getByName("8.8.8.8"), 10002);
            if (socket.getLocalAddress() instanceof Inet4Address) {
                return Optional.of((Inet4Address) socket.getLocalAddress());
            }
        } catch (UnknownHostException networkInterfaces) {
            throw new RuntimeException(networkInterfaces);
        }
        return Optional.empty();
    }
    /*
     * 獲取本地IPv4地址
     * @return Inet4Address>
     */
    public static Optional<Inet4Address> getLocalIp4Address() throws SocketException {
        final List<Inet4Address> inet4Addresses = getLocalIp4AddressFromNetworkInterface();
        if (inet4Addresses.size() != 1) {
            final Optional<Inet4Address> ipBySocketOpt = getIpBySocket();
            if (ipBySocketOpt.isPresent()) {
                return ipBySocketOpt;
            } else {
                return inet4Addresses.isEmpty() ? Optional.empty() : Optional.of(inet4Addresses.get(0));
            }
        }
        return Optional.of(inet4Addresses.get(0));
    }
}

參考:

https://www.jianshu.com/p/f619663f0f0a

https://www.cnblogs.com/starcrm/p/7071227.html

下面在分享一段Java獲取本機IP地址的示例代碼

import java.net.*;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
/**
 * 獲取本機IP 地址
 */
public class IpUtil {
    /*
     * 獲取本機所有網卡信息   得到所有IP信息
     * @return Inet4Address>
     */
    public static List<Inet4Address> getLocalIp4AddressFromNetworkInterface() throws SocketException {
        List<Inet4Address> addresses = new ArrayList<>(1);
        // 所有網絡接口信息
        Enumeration<NetworkInterface> networkInterfaces = NetworkInterface.getNetworkInterfaces();
        if (Objects.isNull(networkInterfaces)) {
            return addresses;
        }
        while (networkInterfaces.hasMoreElements()) {
            NetworkInterface networkInterface = networkInterfaces.nextElement();
            //濾回環網卡、點對點網卡、非活動網卡、虛擬網卡并要求網卡名字是eth或ens開頭
            if (!isValidInterface(networkInterface)) {
                continue;
            }
            // 所有網絡接口的IP地址信息
            Enumeration<InetAddress> inetAddresses = networkInterface.getInetAddresses();
            while (inetAddresses.hasMoreElements()) {
                InetAddress inetAddress = inetAddresses.nextElement();
                // 判斷是否是IPv4,并且內網地址并過濾回環地址.
                if (isValidAddress(inetAddress)) {
                    addresses.add((Inet4Address) inetAddress);
                }
            }
        }
        return addresses;
    }
    /**
     * 過濾回環網卡、點對點網卡、非活動網卡、虛擬網卡并要求網卡名字是eth或ens開頭
     *
     * @param ni 網卡
     * @return 如果滿足要求則true,否則false
     */
    private static boolean isValidInterface(NetworkInterface ni) throws SocketException {
        return !ni.isLoopback() && !ni.isPointToPoint() && ni.isUp() && !ni.isVirtual()
                && (ni.getName().startsWith("eth") || ni.getName().startsWith("ens"));
    }
    /**
     * 判斷是否是IPv4,并且內網地址并過濾回環地址.
     */
    private static boolean isValidAddress(InetAddress address) {
        return address instanceof Inet4Address && address.isSiteLocalAddress() && !address.isLoopbackAddress();
    }
    /*
     * 通過Socket 唯一確定一個IP
     * 當有多個網卡的時候,使用這種方式一般都可以得到想要的IP。甚至不要求外網地址8.8.8.8是可連通的
     * @return Inet4Address>
     */
    private static Optional<Inet4Address> getIpBySocket() throws SocketException {
        try (final DatagramSocket socket = new DatagramSocket()) {
            socket.connect(InetAddress.getByName("8.8.8.8"), 10002);
            if (socket.getLocalAddress() instanceof Inet4Address) {
                return Optional.of((Inet4Address) socket.getLocalAddress());
            }
        } catch (UnknownHostException networkInterfaces) {
            throw new RuntimeException(networkInterfaces);
        }
        return Optional.empty();
    }
    /*
     * 獲取本地IPv4地址
     * @return Inet4Address>
     */
    public static Optional<Inet4Address> getLocalIp4Address() throws SocketException {
        final List<Inet4Address> inet4Addresses = getLocalIp4AddressFromNetworkInterface();
        if (inet4Addresses.size() != 1) {
            final Optional<Inet4Address> ipBySocketOpt = getIpBySocket();
            if (ipBySocketOpt.isPresent()) {
                return ipBySocketOpt;
            } else {
                return inet4Addresses.isEmpty() ? Optional.empty() : Optional.of(inet4Addresses.get(0));
            }
        }
        return Optional.of(inet4Addresses.get(0));
    }
}

讀到這里,這篇“Java獲取本機IP地址的代碼怎么寫”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

固安县| 关岭| 铜鼓县| 资阳市| 吴堡县| 登封市| 丹巴县| 松潘县| 陆河县| 上犹县| 锦州市| 嘉峪关市| 江永县| 通辽市| 祁连县| 靖安县| 泊头市| 黄冈市| 高雄市| 铁岭市| 来安县| 峨眉山市| 青河县| 辽宁省| 麻城市| 延长县| 民勤县| 金川县| 桂平市| 霞浦县| 建始县| 永定县| 乌拉特中旗| 元氏县| 汽车| 娱乐| 探索| 江川县| 南宁市| 桐柏县| 北辰区|