📜  Java中的文件 canRead() 方法及示例

📅  最后修改于: 2022-05-13 01:54:29.883000             🧑  作者: Mango

Java中的文件 canRead() 方法及示例

canRead()函数是Java中 File 类的一部分。此函数确定程序是否可以读取抽象路径名表示的文件。如果抽象文件路径存在并且允许应用程序读取文件,则该函数返回 true。

函数签名:

public boolean canRead()

句法:

file.canRead()

参数:此方法不接受任何参数。

返回值:该函数返回一个布尔值,表示是否允许应用程序读取文件。

异常:如果对文件的读取访问被拒绝,此方法将引发安全异常

下面的程序说明了 canRead()函数的使用:

示例 1:文件“F:\\program.txt”可读

Java
// Java program to demonstrate
// canRead() method of File Class
 
import java.io.*;
 
public class solution {
    public static void main(String args[])
    {
 
        // Get the file
        File f = new File("F:\\program.txt");
 
        // Check if the specified file
        // can be read or not
        if (f.canRead())
            System.out.println("Can be Read");
        else
            System.out.println("Cannot be Read");
    }
}


Java
// Java program to demonstrate
// canRead() method of File Class
 
import java.io.*;
 
public class solution {
    public static void main(String args[])
    {
 
        // Get the file
        File f = new File("F:\\program1.txt");
 
        // Check if the specified file
        // can be read or not
        if (f.canRead())
            System.out.println("Can be Read");
        else
            System.out.println("Cannot be Read");
    }
}


输出:

Can be Read

示例 2:文件“F:\\program1.txt”不可读

Java

// Java program to demonstrate
// canRead() method of File Class
 
import java.io.*;
 
public class solution {
    public static void main(String args[])
    {
 
        // Get the file
        File f = new File("F:\\program1.txt");
 
        // Check if the specified file
        // can be read or not
        if (f.canRead())
            System.out.println("Can be Read");
        else
            System.out.println("Cannot be Read");
    }
}

输出:

Cannot be Read

注意:这些程序可能无法在在线 IDE 中运行。请使用离线 IDE 并设置文件路径。