InetAddress.getLoopbackAddress() has the following syntax.
public static InetAddress getLoopbackAddress()
In the following code shows how to use InetAddress.getLoopbackAddress() method.
//from www. j a v a 2s. c o 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.