FileDocCategorySizeDatePackage
allowUserInput.javaAPI DocExample490Thu Apr 03 15:26:08 BST 1997None

allowUserInput.java

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

public class allowUserInput {

  public static void main(String[] args) {

    URL u;
    URLConnection uc;

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

  }

}