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

getobject.java

import java.net.*;
import java.io.*;

public class getobject {

  public static void main (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

  } // end main

}  // end getobject