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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。