Thursday, 28 June 2012

find ur System ip address by using java progrem :)

import java.net.*;
class local
{
public static void main(String args[])
{
try
{
InetAddress address=InetAddress.getLocalHost();
System.out.println(address);
}
catch(UnknownHostException e)
{
System.out.println("Cound not find www.google.com");
}
}
}

NFS most wanted 2012 gameplay

www.youtube.com/watch?v=t7i15cmByQQ 


and its going to release at

31st October in india

November 1, 2012. UK

 





Download Max Payne 3 Full Version Free For PC

java program to find the ip address of google ,etc...... what ever u want :)

import java.net.*;
class google
{
public static void main(String args[])
{
try
{
InetAddress address=InetAddress.getByName("www.google.com");
System.out.println(address);
}
catch(UnknownHostException e)
{
System.out.println("Cound not find www.google.com");
}
}
}