how to find my 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: my ip windows

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

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

Tags:

Misc Example