Development Java Tutorial

import java.net.MalformedURLException;
import java.net.URL;
public class MainClass {
  public static void main(String[] args) throws MalformedURLException {
    URL u = new URL("http://www.rntsoft.com");
    System.out.printf("HASHCODE:  %H\n", u);    
  }
}
HASHCODE: 44E3D762