Java - File setReadable() 方法



.

描述

Java File setReadable(boolean readable) 方法用于设置此抽象路径名的所有者读取权限。

声明

以下是 java.io.File.setReadable(boolean readable) 方法的声明:

public boolean setReadable(boolean readable)

参数

readable − true 设置访问权限以允许读取操作,false 拒绝读取操作。

返回值

如果操作成功,则此方法返回 true,否则返回 false。

异常

SecurityException − 如果存在安全管理器并且其方法拒绝读取旧路径名或新路径名的访问权限。

示例 1

以下示例演示了 Java File setReadable() 方法的用法。我们创建了一个 File 引用。然后,我们使用给定位置中存在的文件路径创建一个 File 对象。使用 setReadable() 方法,我们尝试使文件可读并将结果存储在布尔变量中。然后,我们使用 canRead() 方法打印文件的可读状态,并打印结果。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      boolean bool = false;
      
      try {     
      
         // create new File objects
         f = new File("F:/test.txt");
         
         // set readable as true
         bool = f.setReadable(true);
         
         // prints
         System.out.println("setReadable() succeeded?: "+bool);
         
         // can read
         bool = f.canRead();
         
         // prints
         System.out.print("Can read?: "+bool);
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上面的程序,这将产生以下结果:

setReadable() succeeded?: true
Can read?: true

示例 2

以下示例演示了 Java File setReadable() 方法的用法。我们创建了一个 File 引用。然后,我们使用给定位置中存在的、在前面示例中已设为可读的文件路径创建一个 File 对象。使用 setReadable() 方法,我们尝试使文件不可读并将结果存储在布尔变量中。然后,我们使用 canRead() 方法打印文件的可读状态,并打印结果。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      boolean bool = false;
      
      try {     
      
         // create new File objects
         f = new File("F:/test.txt");
         
         // set readable as false
         bool = f.setReadable(false);
         
         // prints
         System.out.println("setReadable() succeeded?: "+bool);
         
         // can read
         bool = f.canRead();
         
         // prints
         System.out.print("Can read?: "+bool);
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上面的程序,这将产生以下结果:

setReadable() succeeded?: false
Can read?: true
java_file_class.htm
广告