Java URLConnection .getDefaultAllowUserInteraction ()
Syntax
URLConnection.getDefaultAllowUserInteraction() has the following syntax.
public static boolean getDefaultAllowUserInteraction()
Example
In the following code shows how to use URLConnection.getDefaultAllowUserInteraction() method.
import java.net.URL;
import java.net.URLConnection;
/* w w w . ja v a 2s . c om*/
public class Main {
public static void main(String args[]) throws Exception {
URL u = new URL("http://www.java2s.com");
URLConnection uc = u.openConnection();
System.out.println(uc.getDefaultAllowUserInteraction());
}
}
The code above generates the following result.