共计 409 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以通过以下代码来获取本机的 IP 地址:
import java.net.InetAddress;
import java.net.UnknownHostException;
public class GetLocalIPAddress {public static void main(String[] args) {try {InetAddress localhost = InetAddress.getLocalHost();
System.out.println("Local IP Address: " + localhost.getHostAddress());
} catch (UnknownHostException e) {e.printStackTrace();
}
}
}
上述代码会获取本机的 IP 地址,并打印出来。请注意,有时候本机可能会有多个网卡,每个网卡都会有一个对应的 IP 地址,所以可能会有多个 IP 地址。
丸趣 TV 网 – 提供最优质的资源集合!
正文完