位置:首頁 > Java技術 > Java.io包 > Java.io.File.canExecute()方法實例

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

java.io.File.canExecute() 方法返回true如果該文件可以通過它的抽象名稱可執行。

聲明

以下是java.io.File.canExecute()方法的聲明:

public boolean canExecute()

參數

  • NA

返回值

此方法返回布爾值。誠然,如果路徑名存在且該文件允許應用程序執行。

異常

  • SecurityException -- 如果文件不能被執行。

例子

下麵的示例演示java.io.File.canExecute()方法的用法。

package com.yiibai;

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:EclipseAndroidIOBufferedInputStream	est.txt is executable: true
D:	est.txt is executable: false