Java File.canRead()
Syntax
File.canRead() has the following syntax.
public boolean canRead()
Example
In the following code shows how to use File.canRead() method.
//from w ww . ja va 2s .c o m
import java.io.File;
public class Main {
public static void main(String[] args) {
File f = new File("c:/test.txt");
// returns true if the file can be read
boolean bool = f.canRead();
System.out.print("File can be read: " + bool);
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.io »
Java Tutorial »
java.io »