Java SecurityManager checkAccess()方法与示例

语法:

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

SecurityManager类checkAccess()方法

  • 当前的安全管理器将通过Thread类stop()suspend()resume()setName()setDaemon()的这些方法调用checkAccess(Thread th)方法

  • 当前的安全管理器将调用checkAccess(ThreadGroup tg)方法,以通过使用ThreadGroup类的这些方法(例如setDaemon()stop()resume()suspend()destroy())在线程组上创建新的子线程。

  • checkAccess(Thread th)checkAccess(ThreadGroup tg)方法在修改时可能会引发异常。
    SecurityException:当不允许调用线程修改Thread或ThreadGroup时,可能引发此异常。

  • 这些方法是非静态方法,只能通过类对象访问,并且,如果尝试使用类名称访问这些方法,则会收到错误消息。

参数:

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

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

返回值:

此方法的返回类型为void,不返回任何内容。

示例

//Java程序演示示例 
//Manager的checkAccess()方法的说明

public class CheckAccess extends SecurityManager {
    //覆盖SecurityManager类的checkAcess(Thread th)
    public void checkAccess(Thread th) {
        throw new SecurityException("Restricted...");
    }

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

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

        //通过使用setProperty()方法是设置策略属性 
        //与安全经理
        System.setProperty("java.security.policy", "file:/C:/java.policy");

        //实例化一个CheckAccept对象
        CheckAccess ca = new CheckAccess();

        //通过使用setSecurityManager()方法是设置
        //安全经理
        System.setSecurityManager(ca);

        //通过使用checkAccess(Thread th)方法来检查
        //当前线程是否启用访问
        ca.checkAccess(Thread.currentThread());

        //通过使用checkAccess(ThreadGroup tg)方法来检查 
        //当前线程组是否已启用访问权限
        ca.checkAccess(tg1);

        //启用线程时显示消息
        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)