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


Java Java.io.File.canExecute()用法及代碼示例



描述

這個java.io.File.canExecute()如果文件可以通過其抽象名稱執行,則方法返回 true。

聲明

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

public boolean canExecute()

參數

NA

返回值

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

異常

SecurityException− 如果文件不允許被執行。

示例

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

package com.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.io.File.canExecute() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。