Java File setReadable()函数及示例
setReadable() 方法是File类的一部分。该函数设置所有者或所有人读取抽象路径名的权限。
该函数是一个重载函数,一个函数需要两个参数,另一个只有一个。
函数签名
public boolean setReadable(boolean a, boolean b)
public boolean setReadable(boolean a)
函数语法
file.setReadable(boolean a, boolean b)
file.setReadable(boolean a)
参数: 该函数是一个重载函数。
对于第一个重载
- 如果第一个参数传入一个真值,那么允许读取抽象路径名,否则不允许读取该文件。
- 如果第二个参数传入一个真值,那么执行权限只适用于所有者,否则适用于所有人。
对于第二个重载
- 如果一个真值作为参数被传递,那么它被允许读取抽象路径名,否则不允许读取文件。
返回值: 该函数返回布尔值,即操作是否成功。
异常: 如果该函数不允许对文件进行写操作,该方法会抛出安全异常。
下面的程序将说明setReadable()函数的使用情况
例1: 我们将尝试改变f: 目录下一个现有文件的所有者的setReadable权限。
// Java program to demonstrate the
// use of setReadable() function
import java.io.*;
public class solution {
public static void main(String args[])
{
// try-catch block to handle exceptions
try {
// Create a file object
File f = new File("f:\\program.txt");
// Check if the Readable permission
// can be set to new value
if (f.setReadable(true)) {
// Display that the Readable permission
// is be set to new value
System.out.println("Readable permission"
+ " is set");
}
else {
// Display that the Readable permission
// cannot be set to new value
System.out.println("Readable permission"
+ " cannot be set");
}
}
catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
输出
Readable permission is set
例2: 我们将尝试改变f:目录下的每一个现有文件的setReadable权限。
// Java program to demonstrate the
// use of setReadable() function
import java.io.*;
public class solution {
public static void main(String args[])
{
// try-catch block to handle exceptions
try {
// Create a file object
File f = new File("f:\\program.txt");
// Check if the Readable permission
// can be set to new value
if (f.setReadable(true, false)) {
// Display that the Readable permission
// is be set to new value
System.out.println("Readable permission"
+ " is set");
}
else {
// Display that the Readable permission
// cannot be set to new value
System.out.println("Readable permission"
+ " cannot be set");
}
}
catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
输出
Readable permission is set
这些程序可能无法在在线IDE中运行。请使用离线IDE并设置文件的父文件