Java Data Type Tutorial - Java SecurityManager .checkCreateClassLoader ()








Syntax

SecurityManager.checkCreateClassLoader() has the following syntax.

public void checkCreateClassLoader()

Example

In the following code shows how to use SecurityManager.checkCreateClassLoader() method.

import java.security.AccessControlContext;
import java.security.AccessController;
//w w w .  ja v  a  2  s .c o  m
public class Main {

   public static void main(String[] args) {
      System.setProperty("java.security.policy", "file:/C:/java.policy");

      SecurityManager sm = new SecurityManager();

      System.setSecurityManager(sm);

      // perform the check
      sm.checkCreateClassLoader();
      System.out.println("Allowed!");
   }
}