Java InetAddress.getAddress()
Syntax
InetAddress.getAddress() has the following syntax.
public byte[] getAddress()
Example
In the following code shows how to use InetAddress.getAddress() method.
import java.net.InetAddress;
import java.util.Arrays;
/*from ww w .ja v a2s .c om*/
public class Main {
public static void main(String[] argv) throws Exception {
byte[] ipAddr = new byte[] { 127, 0, 0, 1 };
InetAddress addr = InetAddress.getByAddress(ipAddr);
System.out.println(Arrays.toString(addr.getAddress()));
}
}
The code above generates the following result.