Java文件类boolean canExecute()方法(带示例)

文件类布尔 canExecute()

  • 软件包java.io.File.canExecute()中提供了此方法。

  • 此方法用于执行文件,并且文件由抽象文件路径表示,或者换句话说,该方法用于测试应用程序是否可以执行文件。

  • 此方法的返回类型为布尔值,即返回true或false,如果为true则表示文件可以由文件路径表示的应用程序执行,或者换句话说,文件已经存在要执行,并且返回false表示文件不存在这意味着不允许应用程序执行文件。

  • 如果未授予文件执行访问权限,则此方法可能引发异常(即Security Exception)。

语法:

    boolean canExecute(){
    }

参数:

我们不会在File方法中将任何对象作为参数传递。

返回值:

此方法的返回类型为布尔值,即如果文件已存在并允许执行该文件(由抽象文件路径表示),则它返回true,否则返回false。

Java程序演示canExecute()方法示例

//导入File类,因为我们将使用File类方法
import java.io.File;

//导入Exception类,因为它可能引发 
//处理文件时出现异常
import java.lang.Exception;

public class ExecuteFile {
    public static void main(String[] args) {
        try {
            //指定文件的路径,我们使用双斜杠 
            //为Windows转义'\'字符序列 
             
            File file1 = new File("C:\\Users\\computer clinic\\OneDrive\\Articles\\myjava.txt");
            File file2 = new File("C:\\Users\\computer clinic\\OneDrive\\Articles\\java.txt");

            //通过使用canExecute()被允许执行 
            //文件,如果文件已经存在,并且 
            //如果文件是可执行文件,则返回true,否则返回false。
            if (file1.canExecute())
                System.out.println("This file " + file1.getName() + " " + "is executable");
            else
                System.out.println("This file " + file1.getName() + " " + "is not executable");

            //通过使用canExecute()不允许执行 
            //该文件,因为该文件尚不存在 
            //并返回false。
            if (file2.canExecute())
                System.out.println("This file " + file2.getName() + " " + "is executable");
            else
                System.out.println("This file " + file2.getName() + " " + "is not executable");
        } catch (Exception e) {
            System.out.println("An error occurred.");
            e.printStackTrace();
        }
    }
}

输出结果

D:\Programs>javac ExecuteFile.java
D:\Programs>java ExecuteFile

This file C:\Users\computer clinic\OneDrive\Articles\myjava.txt is not executable
This file C:\Users\computer clinic\OneDrive\Articles\java.txt is not executable
猜你喜欢