how to find ip address code example

Example 1: my ip windows

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

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

Example 3: what is ip address

An internet protocol (IP) address 
allows computers to send and receive information. 
There are four types of IP addresses: 
public, private, static, and dynamic. 
An IP address allows information to be sent and received by the correct parties, 
which means they can also be used to track down a user's physical location.

Example 4: how to find someone's ip address

Using the Command Prompt. On Windows devices, you can find an IP address for a website with the command prompt. ...
Examine the Header of an Incoming Email. When you want to find someone's IP address, an email from them is one of the best places to check. ...
Use an Online IP Lookup Tool.