获取本机名、本机ip地址。

InetAddress addr = InetAddress.getLocalHost();
String hostAddress = addr.getHostAddress();
String hostName = addr.getHostName();


你可能感兴趣的:(获取本机名、本机ip地址。)