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


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


SecurityManager类checkTopLevelWindow()方法

  • checkTopLevelWindow() 方法在 java.lang 包中可用。
  • checkTopLevelWindow() 方法使用 AWTPermission("showWindowWithoutWarningBanner") 权限调用 checkPermission。
  • checkTopLevelWindow() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • checkTopLevelWindow() 方法可能会在显示窗口时抛出异常。
    NullPointerException – 当给定的参数为空时,可能会抛出此异常。

用法:

    public boolean checkTopLevelWindow(Object e_win);

参数:

  • Object e_win– 代表新创建的窗口。

返回值:

这个方法的返回类型是boolean, 当调用者是真实的或受信任的调用给定参数表示的顶级窗口时返回真,窗口将被显示,否则当调用线程不是真实或不可信时返回假,但是否显示窗口或不依赖于调用线程。

例:

// Java program to demonstrate the example 
// of boolean checkTopLevelWindow(Object e_win)
// method of SecurityManager 

import java.security.*;

public class CheckTopLevelWindow extends SecurityManager {
    public static void main(String[] args) {
        // By using setProperty() method is to set the policy property 
        // with security manager
        System.setProperty("java.security.policy", "file:/C:/java.policy");

        // Instantiating a CheckTopLevelWindow object
        CheckTopLevelWindow ctlw = new CheckTopLevelWindow();

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

        // By using checkTopLevelWindow(Object) method is to //check 
        // that top level window is setor not
        boolean e_win = ctlw.checkTopLevelWindow("Window");

        // Display e_win
        System.out.println("e_win = " + e_win);
    }
}

输出

e_win = false


相关用法


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