您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“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 地址
public static void main(String[] args) throws SocketException { System.out.println( IpUtil.getLocalIp4Address().get().toString().replaceAll("/","")); }
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地址的代碼怎么寫”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。