Java InetAddress .getLoopbackAddress ()
Syntax
InetAddress.getLoopbackAddress() has the following syntax.
public static InetAddress getLoopbackAddress()
Example
In the following code shows how to use InetAddress.getLoopbackAddress() method.
//from ww w . j a va 2 s. co m
import java.net.InetAddress;
public class Main {
public static void main(String[] argv) throws Exception {
InetAddress address = InetAddress.getLoopbackAddress();
System.out.println("Name: " + address.getHostName());
System.out.println("Addr: " + address.getHostAddress());
System.out.println(address.isLoopbackAddress());
}
}
The code above generates the following result.