how to find my ip code example

Example 1: my ip windows

//See your internal ip on any windows
Search -> Write:cmd-> command:ipconfig

Example 2: my ip

Always make sure not to give your public IP address to anyone who you DON'T trust

Example 3: 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());	
	}
}

Example 4: my ip

Only Share This if you are hosting a server or something and you know what ur doing.

Example 5: what is my ip address ?

curl ifconfig.co