InetAddress addr = java.net.InetAddress.getRemoteHost();
MyHost = addr.getHostName();
IPaddressString = addr.getHostAddress();
上述代码返回用户本地数据为 127.0.0.1 和 Localhost
InetAddress addr = java.net.InetAddress.getRemoteHost();
MyHost = addr.getHostName();
IPaddressString = addr.getHostAddress();
上述代码返回用户本地数据为 127.0.0.1 和 Localhost