11. 2. 12. canRead(): Returns true if you are permitted to read the file and false otherwise.
This method can throw a SecurityException if the file is not permitted.
import java.io.File;
public class MainClass { public static void main(String[] a) {
File myFile = new File("C:" + File.separator + "jdk1.5.0" + File.separator, "File.java");
System.out.println(myFile.canRead());
}
}