import java.net.URL; 
 
public class Main { 
  public static void main(String[] argv) throws Exception { 
 
    URL url = new URL("http://hostname:80/index.html#_top_"); 
 
    String protocol = url.getProtocol(); // http 
    String host = url.getHost(); // hostname 
    int port = url.getPort(); // 80 
    String file = url.getFile(); // index.html 
    String ref = url.getRef(); // _top_ 
  } 
} 
 
    
     
     
     
     
     
  
  |