Java - File canWrite() 方法



描述

Java File canWrite() 方法返回 true,如果文件可以通过其抽象名称写入。

声明

以下是 java.io.File.canWrite() 方法的声明:

public boolean canWrite()

参数

返回值

此方法返回布尔值。如果路径名存在并且应用程序允许执行该文件,则返回 true。

异常

SecurityException − 如果 SecurityManager.checkWrite(java.lang.String) 方法拒绝对文件的写入访问。

示例 1

以下示例演示了 Java File canWrite() 方法的用法。我们创建了一个 File 引用。然后,我们使用给定位置中存在的的文件创建一个 File 对象。使用 canWrite() 方法,我们获取文件的可写状态。然后,使用 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://test.txt");

         // true if the file is writable
         boolean bool = f.canWrite();

         // find the absolute path
         String path = f.getAbsolutePath(); 

         // prints
         System.out.println(path + " is writable: "+ bool);

      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果——假设我们在当前位置有一个 test.txt 文件,并且它不可写。

F:\test.txt is writable: true

示例 2

以下示例演示了 Java File canWrite() 方法的用法。我们创建了一个 File 引用。然后,我们使用一个不可写(只读)的文件创建一个 File 对象。使用 canWrite() 方法,我们获取文件的可写状态。然后,使用 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://test1.txt");

         // true if the file is writable
         boolean bool = f.canWrite();

         // find the absolute path
         String path = f.getAbsolutePath(); 

         // prints
         System.out.println(path + " is writable: "+ bool);

      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果——假设我们在给定位置有一个不可写的 test2.txt 文件。

F:\test1.txt is writable: false

示例 3

以下示例演示了 Java File canWrite() 方法的用法。我们创建了一个 File 引用。然后,我们使用给定位置中不存在的文件创建一个 File 对象。使用 canWrite() 方法,我们获取文件的可写状态。然后,使用 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 writable
         boolean bool = f.canWrite();

         // find the absolute path
         String path = f.getAbsolutePath(); 

         // prints
         System.out.println(path + " is writable: "+ bool);

      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果——假设我们在给定位置没有 test2.txt 文件,因此它不可写。

F:\test2.txt is writable: false
java_file_class.htm
广告