Java API Tutorial - Java InetAddress .getByAddress (byte[] addr)








Syntax

InetAddress.getByAddress(byte[] addr) has the following syntax.

public static InetAddress getByAddress(byte[] addr)    throws UnknownHostException

Example

In the following code shows how to use InetAddress.getByAddress(byte[] addr) method.

import java.net.InetAddress;

public class Main {
  public static void main(String[] argv) throws Exception {
    byte[] ipAddr = new byte[] { 127, 0, 0, 1 };
    InetAddress addr = InetAddress.getByAddress(ipAddr);
    String hostnameCanonical = addr.getCanonicalHostName();
  }
}