Here you can find the source of getHostName()
public static String getHostName()
//package com.java2s; import java.net.InetAddress; import java.net.UnknownHostException; public class Main { public static String getHostName() { InetAddress addr;//from www . j a v a 2 s . c o m try { addr = InetAddress.getLocalHost(); } catch (UnknownHostException e) { return "localhost"; } return addr.getHostName(); } }