Java URLConnection.getPermission()
Syntax
URLConnection.getPermission() has the following syntax.
public Permission getPermission() throws IOException
Example
In the following code shows how to use URLConnection.getPermission() method.
import java.net.URL;
import java.net.URLConnection;
/*ww w. j a v a2 s .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.getPermission());
}
}
The code above generates the following result.