Java.io.File.length()方法实例
java.io.File.length() 返回此抽象路径名定义的文件的长度。如果此路径名定义了一个目录返回值未指定。
声明
以下是java.io.File.length()方法的声明:
public long length()
参数
-
NA
返回值
该方法返回表示此抽象路径名的文件的长度,以字节为单位。
异常
-
SecurityException -- 如果安全管理器存在并且其SecurityManager.checkRead(java.lang.String) 方法拒绝对文件的读访问
例子
下面的示例演示java.io.File.length()方法的用法。
package com.yiibai; import java.io.File; public class FileDemo { public static void main(String[] args) { File f = null; String path; long len; boolean bool = false; try{ // create new file f = new File("c:/test.txt"); // true if the file path is a file, else false bool = f.exists(); // if path exists if(bool) { // returns the length in bytes len = f.length(); // path path = f.getPath(); // print System.out.print(path+" file length: "+len); } }catch(Exception e){ // if any error occurs e.printStackTrace(); } } }
假设我们有一个文本文件c:/ test.txt,它具有以下内容。该文件将被用作输入在我们的示例程序:
ABCDE
让我们编译和运行上面的程序,这将产生以下结果:
c: est.txt file length: 5