Java File canExecute()方法及示例
canExecute() 函数是Java中File类的一部分。这个函数决定了程序是否可以执行由抽象路径名表示的指定文件。如果文件路径存在并且应用程序被允许执行该文件,该方法将返回true。否则,它将返回false。
函数签名 。
public boolean canExecute()
语法
file.canExecute();
参数: 该函数不接受任何参数。
返回值: 该函数返回一个布尔值,代表指定文件是否可以被执行。
异常: 如果文件的读取权限被拒绝,该方法会抛出 安全异常 。
下面的程序说明了canExecute()函数的使用。
例1: 文件 “F:\program.txt “是F:目录下的一个现有文件,程序被允许执行该文件的权限。
// Java program to demonstrate// canExecute() method of File class import java.io.*; public class solution { // Driver Code public static void main(String args[]) { // Get the file to be executed File f = new File("F:\\program.txt"); // Check if this file // can be executed or not // using canExecute() method if (f.canExecute()) { // The file is can be executed // as true is returned System.out.println("Executable"); } else { // The file is cannot be executed // as false is returned System.out.println("Non Executable"); } }}
输出
Executable
例2: 文件 “F:\program1.txt “不存在,我们将尝试检查该文件是否可执行。
// Java program to demonstrate// canExecute() method of File class import java.io.*; public class solution { // Driver Code public static void main(String args[]) { // Get the file to be executed File f = new File("F:\\program1.txt"); // Check if this file // can be executed or not // using canExecute() method if (f.canExecute()) { // The file is can be executed // as true is returned System.out.println("Executable"); } else { // The file is cannot be executed // as false is returned System.out.println("Non Executable"); } }}输出
Non Executable
注意:这些程序可能无法在在线IDE中运行。请使用离线IDE并设置文件的路径 。
