how to find your IP address code example
Example 1: get your ip address from terminal
for local ip :
hostname -I
for Public ip :
curl icanhazip.com
Example 2: how to find ip address
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());
}
}