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


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