Java Java.io.File.canExecute() 方法

  • 描述

    如果可以通过文件的抽象名称执行文件,则java.io.File.canExecute()
  • 声明

    以下是java.io.File.canExecute()方法的声明-
     public boolean canExecute()
  • 参数

    不适用
  • 返回值

    此方法返回布尔值。如果路径名存在并且应用程序允许执行文件,则为True。
  • 异常

    SecurityException如果不允许执行文件。
  • 例子

    以下示例显示java.io.File.canExecute()方法的用法。
     
    package com.jc2182;
    import java.io.File;
    
    public class FileDemo {
       public static void main(String[] args) {      
          File f = null;
          String[] strs = {"test.txt", "/test.txt"};
          
          try {
             // for each string in string array 
             for(String s:strs ) {
             
                // create new file
                f = new File(s);
                
                // true if the file is executable
                boolean bool = f.canExecute();
                
                // find the absolute path
                String a = f.getAbsolutePath(); 
                
                // prints absolute path
                System.out.print(a);
                
                // prints
                System.out.println(" is executable: "+ bool);
             } 
             
          } catch(Exception e) {
             // if any I/O error occurs
             e.printStackTrace();
          }
       }
    }
    
    让我们编译并运行以上程序,这将产生以下结果-
     
    D:\EclipseAndroid\IO\BufferedInputStream\test.txt is executable: true
    D:\test.txt is executable: false