How to find my IP address?
Guys execute the following code in Java and see your IP address. "nameOfComputer" variable is your computer name...
import java.net.InetAddress;
public class WhoAmI {
public static void main(String[] args) throws Exception{
String nameOfComputer = "HP-PC"...