Java API Tutorial - Java URLConnection .setAllowUserInteraction (boolean allowuserinteraction)








Syntax

URLConnection.setAllowUserInteraction(boolean allowuserinteraction) has the following syntax.

public void setAllowUserInteraction(boolean allowuserinteraction)

Example

In the following code shows how to use URLConnection.setAllowUserInteraction(boolean allowuserinteraction) method.

// w w  w .  j ava2s  . co  m
import java.net.URL;
import java.net.URLConnection;

public class Main {

  public static void main(String args[]) throws Exception {

    URL u = new URL("http://www.java2s.com");
    URLConnection uc = u.openConnection();
    
    uc.setAllowUserInteraction(true);
    System.out.println(uc.getAllowUserInteraction());
  }

}

The code above generates the following result.