Here you can find the source of getFullHostName(InetAddress netAddress)
private static String getFullHostName(InetAddress netAddress)
//package com.java2s; import java.net.*; public class Main { private static String getFullHostName(InetAddress netAddress) { if (null == netAddress) { return null; }//www . ja v a2 s . com String name = netAddress.getCanonicalHostName(); // get full host address return name; } }