FileDocCategorySizeDatePackage
getURLConnection.javaAPI DocExample419Thu Apr 03 15:26:22 BST 1997None

getURLConnection

public class getURLConnection extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)


    URL u;
    URLConnection uc;

    try {
      u = new URL("http://www.ora.com");
      try {
        uc = u.openConnection();
      }
      catch (IOException e) {
        System.err.println(e);
      }
    }
    catch (MalformedURLException e) {
      System.err.println(e);
    }