例子
以下示例显示java.io.File.length()方法的用法。
package com.jc2182;
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 ,其内容如下。该文件将用作示例程序的输入-
让我们编译并运行以上程序,这将产生以下结果-
c:\test.txt file length: 5