當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。