当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java SecurityManager checkAccess()用法及代码示例


用法:

    public void checkAccess (Thread th);
    public void checkAccess (ThreadGroup tg);

SecurityManager类checkAccess()方法

  • checkAccess(Thread th) 方法由线程类 stop()、suspend()、resume()、setName() 和 setDaemon() 的这些方法调用当前安全管理器。
  • checkAccess(ThreadGroup tg) 方法调用当前安全管理器通过使用 ThreadGroup 类的这些方法(如 setDaemon()、stop()、resume()、suspend() 和 destroy())在线程组上创建新的子线程。
  • checkAccess(线程th)、checkAccess(ThreadGroup tg)方法在修改时可能会抛出异常。SecurityException:当调用线程不允许修改Thread或ThreadGroup时可能会抛出这个异常。
  • 这些方法是非静态方法,只能通过类对象访问,如果我们尝试使用类名访问这些方法,则会出现错误。

参数:

  • 在第一种情况下,Thread th- 该参数表示要检查的线程。
  • 在第二种情况下,ThreadGroup tg- 此参数表示要检查的线程组。

返回值:

这个方法的返回类型是void,它什么都不返回。

例:

// Java program to demonstrate the example 
// of checkAccess () method of SecurityManager class

public class CheckAccess extends SecurityManager {
    // Override checkAcess(Thread th) of SecurityManager class
    public void checkAccess(Thread th) {
        throw new SecurityException("Restricted...");
    }

    // Override checkAcess(ThreadGroup tg) of SecurityManager //class
    public void checkAccess(ThreadGroup tg) {
        throw new SecurityException("Restricted...");
    }

    public static void main(String[] args) {
        ThreadGroup tg1 = new ThreadGroup("New Thread Group");

        // By using setProperty() method is to set the policy property 
        // with security manager
        System.setProperty("java.security.policy", "file:/C:/java.policy");

        // Instantiating a CheckAccept object
        CheckAccess ca = new CheckAccess();

        // By using setSecurityManager() method is to set the
        // security manager
        System.setSecurityManager(ca);

        // By using checkAccess(Thread th) method is to check that
        // current thread is enabled for access or not
        ca.checkAccess(Thread.currentThread());

        // By using checkAccess(ThreadGroup tg) method is to check 
        // that current thread group is enabled for access or not
        ca.checkAccess(tg1);

        // Display the message when thread is enabled
        System.out.println("Not Restricted..");
    }
}

输出

Exception in thread "main" java.lang.SecurityException:Restricted...
	at CheckAccess.checkAccess(CheckAccess.java:5)
	at CheckAccess.main(CheckAccess.java:30)


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java SecurityManager checkAccess() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。