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


Java SecurityManager checkExec()用法及代碼示例


SecurityManager類checkExec()方法

  • checkExec() 方法在 java.lang 包中可用。
  • checkExec() 方法當給定的參數包含絕對路徑時,使用 FilePermission(commands,"execute") 調用 checkPermission,否則它使用 FilePermission("<<ALL FILES>>","execute") 調用 checkPermission。
  • checkExec() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • checkExec() 方法可能在創建進程時拋出異常。
    • SecurityException - 當不允許調用線程創建子進程並且通過使用運行時的 exec() 方法為當前安全管理器調用它時,可能會拋出此異常。
      • NullPointerException - 當給定參數為 null 時可能會拋出此異常。

用法:

    public void checkExec(String commands);

參數:

  • String commands- 代表 system-specific 命令。

返回值:

這個方法的返回類型是void,它什麽都不返回。

例:

// Java program to demonstrate the example 
// of void checkExec(String commands)
// method of SecurityManager 

public class CheckExec {
    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 SecurityManager object
        SecurityManager smgr = new SecurityManager();

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

        // By using checkExec(String commands) method is to check 
        //that the given command is executable or not
        smgr.checkExec("TextPad.exe");

        // Display the message when command is executed
        System.out.println("Command Executed..");
    }
}

輸出

Exception in thread "main" java.security.AccessControlException:access denied ("java.io.FilePermission" "<<ALL FILES>>" "execute")
	at java.base/java.security.AccessControlContext.checkPermission(AccessControlContext.java:472)
	at java.base/java.security.AccessController.checkPermission(AccessController.java:897)
	at java.base/java.lang.SecurityManager.checkPermission(SecurityManager.java:322)
	at java.base/java.lang.SecurityManager.checkExec(SecurityManager.java:572)
	at CheckExec.main(CheckExec.java:20)


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java SecurityManager checkExec() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。