Here you can find the source of checkHost(String hostname)
public static void checkHost(String hostname) throws UnknownHostException
//package com.java2s; // it under the terms of the GNU General Public License as published by import java.net.InetAddress; import java.net.UnknownHostException; public class Main { public static void checkHost(String hostname) throws UnknownHostException { InetAddress.getByName(hostname); }//from w w w . j a v a 2 s. c om }