programming-examples/java/Numerical_Problems/java Program to change the host name to its specific IP address.java
2019-11-15 12:59:38 +01:00

15 lines
460 B
Java

import java.net.InetAddress;
import java.net.UnknownHostException;
public class GetIP {
public static void main(String[] args) {
InetAddress address = null;
try {
address = InetAddress.getByName("www.scanftree.com");
}
catch (UnknownHostException e) {
System.exit(2);
}
System.out.println(address.getHostName() + "="+ address.getHostAddress());
System.exit(0);
}
}