import java.net.*; public class allowDefaultUserInteraction { public static void main(String[] args) { if (!URLConnection.getDefaultAllowUserInteraction()) { URLConnection.setDefaultAllowUserInteraction(true); } } }