亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java如何獲取ip地址

小億
82
2024-01-16 15:03:59
欄目: 編程語言

在Java中,可以使用InetAddress類來獲取IP地址。

以下是一些示例代碼:

  1. 獲取本機IP地址:
import java.net.InetAddress;

public class Main {
    public static void main(String[] args) {
        try {
            InetAddress localhost = InetAddress.getLocalHost();
            System.out.println("本機IP地址: " + localhost.getHostAddress());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
  1. 獲取指定域名的IP地址:
import java.net.InetAddress;

public class Main {
    public static void main(String[] args) {
        try {
            InetAddress address = InetAddress.getByName("www.google.com");
            System.out.println("www.google.com 的IP地址: " + address.getHostAddress());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

注意:InetAddress.getLocalHost()方法可能返回本機的IPv6地址,而不是IPv4地址。如果需要獲取IPv4地址,可以使用NetworkInterface類來獲取本機的網絡接口,然后從中獲取IPv4地址。

例如:

import java.net.InetAddress;
import java.net.NetworkInterface;
import java.util.Enumeration;

public class Main {
    public static void main(String[] args) {
        try {
            Enumeration<NetworkInterface> interfaces = NetworkInterface.getNetworkInterfaces();
            while (interfaces.hasMoreElements()) {
                NetworkInterface networkInterface = interfaces.nextElement();
                Enumeration<InetAddress> addresses = networkInterface.getInetAddresses();
                while (addresses.hasMoreElements()) {
                    InetAddress address = addresses.nextElement();
                    if (!address.isLoopbackAddress() && address.getHostAddress().indexOf(":") == -1) {
                        System.out.println("本機IPv4地址: " + address.getHostAddress());
                    }
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

0
宁晋县| 余江县| 同仁县| 齐河县| 南岸区| 资阳市| 峡江县| 阿克| 桃源县| 喀喇| 丹江口市| 纳雍县| 丹阳市| 鱼台县| 鹰潭市| 顺义区| 崇明县| 大足县| 淳化县| 渭源县| 礼泉县| 伽师县| 黔西| 大港区| 天镇县| 石林| 苍梧县| 固始县| 肇东市| 乌兰浩特市| 桂东县| 长泰县| 东乡族自治县| 高雄市| 贵溪市| 潞城市| 虞城县| 澳门| 五常市| 客服| 新邵县|