当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java File canRead()用法及代码示例


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

函数签名:

public boolean canRead()

用法:


file.canRead()

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

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

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

以下示例程序旨在说明canRead()函数的用法:

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

// 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"); 
    } 
}

输出:

Can be Read

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

// 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并设置文件的路径。



相关用法


注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 File canRead() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。