Java - File canExecute() 方法



描述

Java File canExecute() 方法返回 true,如果文件可以通过其抽象名称执行。

声明

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

public boolean canExecute()

参数

返回值

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

异常

SecurityException - 如果不允许执行文件。

示例 1

以下示例演示了 Java File canExecute() 方法的用法。我们创建了一个 File 引用。然后我们使用 test.txt 文件创建一个 File 对象。使用 canExecute() 方法,我们获取了一个不可执行文件的可执行状态。然后使用 getAbsolutePath(),我们获取文件的绝对路径。最后,我们打印文件名及其可执行状态。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;               
      try {
         
         // create new file
         f = new File("test.txt");

         // true if the file is executable
         boolean bool = f.canExecute();

         // find the absolute path
         String path = f.getAbsolutePath(); 

         // prints
         System.out.println(path + " is executable: "+ bool);

      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 - 假设我们在当前位置有一个 test.txt 文件,并且它不可执行。

F:\Workspace\Tester\test.txt is executable: false

示例 2

以下示例演示了 Java File canExecute() 方法的用法。我们创建了一个 File 引用。然后我们使用可执行文件的路径创建一个 File 对象。使用 canExecute() 方法,我们获取了一个可执行文件的可执行状态。然后使用 getAbsolutePath(),我们获取文件的绝对路径。最后,我们打印文件名及其可执行状态。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;      
         
      try {
         // create new file
         f = new File("F://Apache//apache-maven-3.8.4//bin/mvn");

         // true if the file is executable
         boolean bool = f.canExecute();

         // find the absolute path
         String path = f.getAbsolutePath(); 

         // prints
         System.out.println(path + " is executable: "+ bool);

      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 - 假设我们在当前位置有一个 test.txt 文件,并且它不可执行。

F:\Apache\apache-maven-3.8.4\bin\mvn is executable: true

示例 3

以下示例演示了 Java File canExecute() 方法的用法。我们创建了一个 File 引用。然后我们使用给定位置不存在的文件创建一个 File 对象。使用 canExecute() 方法,我们获取了一个可执行文件的可执行状态。然后使用 getAbsolutePath(),我们获取文件的绝对路径。最后,我们打印文件名及其可执行状态。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;      
         
      try {
         // create new file
         f = new File("F://test2.txt");

         // true if the file is executable
         boolean bool = f.canExecute();

         // find the absolute path
         String path = f.getAbsolutePath(); 

         // prints
         System.out.println(path + " is executable: "+ bool);

      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 - 假设我们在当前位置没有 test.txt 文件。

F:\test2.txt is executable: false
java_file_class.htm
广告