Get your own address in Java
Description
The following code shows how to get your own address.
Example
/*from w w w . j a v a 2 s . c o m*/
import java.net.InetAddress;
public class Main {
public static void main(String[] args) {
try {
InetAddress me = InetAddress.getLocalHost();
String dottedQuad = me.getHostAddress();
System.out.println("My address is " + dottedQuad);
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
The code above generates the following result.