Here you can find the source of getHostname(String targetEndpoint)
public static String getHostname(String targetEndpoint)
//package com.java2s; //License from project: Apache License import java.net.URI; public class Main { public static String getHostname(String targetEndpoint) { try {/*from ww w . j a v a2s.co m*/ URI uri = new URI(targetEndpoint); return uri.getHost(); } catch (Exception e) { return "localhost"; } } }