Java File canRead()方法
java.io.File.canRead() 如果文件可以被读记为它的抽象名称方法返回true。
1 语法
public boolean canRead()
2 参数
无
3 返回值
如果指定的文件存在的路径名和文件允许应用程序读取,此方法返回布尔值true。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.File.canRead()方法的例子
*/
import java.io.File;
public class Demo {
public static void main(String[] args) {
File f = null;
try {
// create new file
f = new File("c:/test.txt");
// returns true if the file can be read
boolean bool = f.canRead();
// print
System.out.print("File can be read: "+bool);
} catch(Exception e) {
// if any I/O error occurs
e.printStackTrace();
}
}
}
输出结果为:
File can be read: false
热门文章
优秀文章