Thursday, September 18, 2025
HomeLanguagesJavaFiles isReadable() method in Java with Examples

Files isReadable() method in Java with Examples

isReadable() method of java.nio.file.Files help us to check whether Java virtual machine has appropriate privileges that would allow it to open this file for reading or not. This method test file is readable or not. This method checks that a file exists or not and if file exists then it is readable or not. This method returns true if the file exists and is readable or it would return false if the following cases:

  • file does not exist
  • execute access would be denied because the Java virtual machine has insufficient privileges,

Syntax:

public static boolean isReadable(Path path)

Parameters: This method accepts a parameter path which is the path to the file to check. 

Return value: This method returns true if the file exists and is readable or it would return false if the following cases:

  • file does not exist
  • execute access would be denied because the Java virtual machine has insufficient privileges,

Exception: This method will throw SecurityException in the case of the default provider, and a security manager is installed, the checkRead is invoked to check read access to the file. Below programs illustrate isReadable(Path) method:

Program 1: 

Java




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


Output:

Program 2: 

Java




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


Output:

Example:

Java




import java.io.*;
import java.nio.file.Files;
import java.nio.file.Paths;
 
public class GFG {
    public static void main(String[] args)
    {
        String fileName = "test1.txt";
        boolean isFileReadable
            = Files.isReadable(Paths.get(fileName));
        System.out.println("Is " + fileName + " readable? "
                           + isFileReadable);
    }
}


Output:

Is test1.txt readable? false
RELATED ARTICLES

Most Popular

Dominic
32299 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6660 POSTS0 COMMENTS
Nicole Veronica
11834 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11895 POSTS0 COMMENTS
Shaida Kate Naidoo
6779 POSTS0 COMMENTS
Ted Musemwa
7052 POSTS0 COMMENTS
Thapelo Manthata
6735 POSTS0 COMMENTS
Umr Jansen
6741 POSTS0 COMMENTS