import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
public class Main {
public static void main(String[] argv) {
List urlList = new ArrayList();
try {
urlList.add(new URL("http://www.rntsoft.com"));
} catch (MalformedURLException e) {
}
String s = urlList.get(0).getHost();
}
}