Get hostname by a byte array containing the IP address : IP Address « Network Protocol « Java
- Java
- Network Protocol
- IP Address
Get hostname by a byte array containing the IP address
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);
}
}
Related examples in the same category