共计 320 个字符,预计需要花费 1 分钟才能阅读完成。
原文链接
能够应用 getLocalHost
命令:
import java.net.InetAddress;
public class Main {public static void main(String[] args)
throws Exception {InetAddress addr = InetAddress.getLocalHost();
System.out.println("Local HostAddress:" + addr.getHostAddress());
System.out.println("Local host name:" + addr.getHostName());
}
}
即可输入本机的 IP 和 name。
学习更多编程常识,请关注我的公众号:
代码的路
正文完