canExecute()函数是Java中File类的一部分。此函数确定程序是否可以执行由抽象路径名表示的指定文件。如果文件路径存在并且允许应用程序执行文件,则此方法将返回true。否则它将返回false。
函数签名:
public boolean canExecute()
用法:
file.canExecute();
参数:该函数不接受任何参数。
返回值:此函数返回一个布尔值,表示是否可以执行指定的文件。
异常:如果对文件的读取访问被拒绝,则此方法将引发Security Exception
以下示例程序旨在说明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并设置文件的路径。
相关用法
- Java File listFiles()用法及代码示例
- Java File createTempFile()用法及代码示例
- Java File canRead()用法及代码示例
- Java File isDirectory()用法及代码示例
- Java File delete()用法及代码示例
- Java File getName()用法及代码示例
- Java File setLastModified()用法及代码示例
- Java File getPath()用法及代码示例
- Java File canWrite()用法及代码示例
- Java File isHidden()用法及代码示例
- Java File createNewFile()用法及代码示例
- Java File setExecutable()用法及代码示例
- Java File getTotalSpace()用法及代码示例
- Java File getParentFile()用法及代码示例
- Java File isAbsolute()用法及代码示例
注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 File canExecute() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。