FileDocCategorySizeDatePackage
getobject.javaAPI DocExample677Thu Apr 03 15:15:14 BST 1997None

getobject

public class getobject extends Object

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


    String thisLine;
    URL u;


    if  (args.length > 0) {

      //Open the URL for reading
      try {
        u = new URL(args[0]);
        try {
          Object o = u.getContent();
          System.out.println("I got a " + o.getClass().getName());
        } // end try
        catch (Exception e) {
          System.err.println(e);
        }
      } // end try
      catch (MalformedURLException e) {
        System.err.println(args[0] + " is not a parseable URL");
        System.err.println(e);
      }
    } //  end if