public class TestInetAddress {
public static void main(String[] args) {
try {
String hostAddress = InetAddress.getLocalHost().getHostAddress();
System.out.println(hostAddress);
} catch (UnknownHostException e) {
e.printStackTrace();
}
}
}



