當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Files isReadable()用法及代碼示例


java.nio.file.Files的isReadable()方法可幫助我們檢查Java虛擬機是否具有適當的特權,該特權可使其打開此文件以進行讀取。此方法測試文件是否可讀。此方法檢查文件是否存在,如果文件存在,則該文件是否可讀。如果文件存在並且可以讀取,則此方法返回true,或者在以下情況下返回false:

  • 文件不存在
  • 由於Java虛擬機的權限不足,執行訪問將被拒絕,
  • 無法確定訪問權限。

用法:

public static boolean isReadable(Path path)

參數:此方法接受參數路徑,該路徑是要檢查的文件的路徑。


返回值:如果文件存在並且可以讀取,則此方法返回true,或者在以下情況下返回false:

  • 文件不存在
  • 由於Java虛擬機的權限不足,執行訪問將被拒絕,
  • 無法確定訪問權限。

異常:在默認提供程序的情況下,此方法將拋出SecurityException,並且已安裝安全管理器,將調用checkRead來檢查對該文件的讀取訪問。

以下示例程序旨在說明isReadable(Path)方法:
示例1:

// Java program to demonstrate 
// Files.isReadable() method 
  
import java.io.IOException; 
import java.nio.file.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create object of Path 
        // This file is available on windows and 
        // It is a readable file. 
  
        Path path 
            = Paths.get( 
                "D:\\GIT_EWS_PROJECTS\\logger"
                + "\\src\\logger"
                + "\\GFG.java"); 
  
        // check whether this file 
        // is readable or not 
        boolean result; 
        result = Files.isReadable(path); 
  
        System.out.println("File " + path 
                           + " is Readable = "
                           + result); 
    } 
}
輸出:

示例2:

// Java program to demonstrate 
// Files.isReadable() method 
  
import java.io.IOException; 
import java.nio.file.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an object of Path 
        // This file is available on windows and 
        // It is not a readable file. 
  
        Path path 
            = Paths.get( 
                "D:\\User Aman\\"
                + "Documents\\MobaXterm\\"
                + "\\ArrayList.docx"); 
  
        // check whether this file 
        // is readable or not 
        boolean result; 
        result = Files.isReadable(path); 
  
        System.out.println("File " + path 
                           + " is Readable = "
                           + result); 
    } 
}
輸出:

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Files.html#isReadable(java.nio.file.Path)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Files isReadable() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。