ip adr code example
Example 1: my ip
Only Share This if you are hosting a server or something and you know what ur doing.
Example 2: what is my ip address ?
curl ifconfig.co
Example 3: what use of ip addresses
import java.net.InetAddress;
import java.net.UnknownHostException;
public class FindIPaddress {
public static void main(String[] args) throws UnknownHostException {
InetAddress a = InetAddress.getLocalHost();
System.out.println(a.getHostAddress());
}
}