- Java.io 包类
- Java.io - 首页
- Java.io - BufferedInputStream
- Java.io - BufferedOutputStream
- Java.io - BufferedReader
- Java.io - BufferedWriter
- Java.io - ByteArrayInputStream
- Java.io - ByteArrayOutputStream
- Java.io - CharArrayReader
- Java.io - CharArrayWriter
- Java.io - Console
- Java.io - DataInputStream
- Java.io - DataOutputStream
- Java.io - File
- Java.io - FileDescriptor
- Java.io - FileInputStream
- Java.io - FileOutputStream
- Java.io - FilePermission
- Java.io - FileReader
- Java.io - FileWriter
- Java.io - FilterInputStream
- Java.io - FilterOutputStream
- Java.io - FilterReader
- Java.io - FilterWriter
- Java.io - InputStream
- Java.io - InputStreamReader
- Java.io - LineNumberInputStream
- Java.io - LineNumberReader
- Java.io - ObjectInputStream
- Java.io - ObjectInputStream.GetField
- Java.io - ObjectOutputStream
- Java.io - ObjectOutputStream.PutField
- Java.io - ObjectStreamClass
- Java.io - ObjectStreamField
- Java.io - OutputStream
- Java.io - OutputStreamWriter
- Java.io - PipedInputStream
- Java.io - PipedOutputStream
- Java.io - PipedReader
- Java.io - PipedWriter
- Java.io - PrintStream
- Java.io - PrintWriter
- Java.io - PushbackInputStream
- Java.io - PushbackReader
- Java.io - RandomAccessFile
- Java.io - Reader
- Java.io - SequenceInputStream
- Java.io - SerializablePermission
- Java.io - StreamTokenizer
- Java.io - StringBufferInputStream
- Java.io - StringReader
- Java.io - StringWriter
- Java.io - Writer
- Java.io 包额外内容
- Java.io - 接口
- Java.io - 异常
- Java.io 包有用资源
- Java.io - 讨论
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