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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。