Here you can find the source of getHostNameOrAddress(String host)
public static String getHostNameOrAddress(String host)
//package com.java2s; import java.net.*; public class Main { public static String getHostNameOrAddress(String host) { String hostname = host;//from w w w . j ava2 s. c o m try { InetAddress ia = InetAddress.getByName(host); if (ia != null) hostname = ia.getHostName(); } catch (UnknownHostException uhe) { } return hostname; } }