用 Java 显示当前文件的长度

java 8object oriented programmingprogramming

可以使用方法 java.io.File.length() 显示由抽象路径名指定的当前文件的长度。该方法以字节为单位返回文件长度,不需要任何参数。

下面给出了一个演示此操作的程序 −

示例

import java.io.File;
public class Demo {
   public static void main(String[] args) {
      try {
         File file = new File("demo1.txt");
         file.createNewFile();
         System.out.println("Length of file: " + file.length());
      } catch(Exception e) {
         e.printStackTrace();
      }
   }
}

上述程序的输出如下 −

输出

Length of file: 0

现在让我们理解一下上面的程序。

方法java.io.File.length()用于查找抽象路径名指定的当前文件的长度并显示出来。演示此操作的代码片段如下 −

try {
   File file = new File("demo1.txt");
   file.createNewFile();
   System.out.println("Length of file: " + file.length());
} catch(Exception e) {
   e.printStackTrace();
}

相关文章