Mega Code Archive

 
Categories / Java / Network Protocol
 

Get canonical host name

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();   } }