Determine if a file can be read in Java

Description

The following code shows how to determine if a file can be read.

Example


/*from ww w . j  av  a  2 s  . c  o m*/
import java.io.File;

public class Main {

  public static void main(String[] args) {
    String filePath = "C:/Text.txt";
    File file = new File(filePath);

    if (file.canRead()) {
      System.out.println("readable");
    } else {
      System.out.println("not readable");
    }
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    I/O »




Binary File
Byte Array
CharSet
Checksum
Console
Create Copy Move Delete
Directory
Drive
Encode Decode
File Attribute
File Lock
File System
GZIP
Jar File
NIO Buffer
Path
Scanner
StreamTokenizer
Temporary File
Text File
Zip