Java Java.io.File.length() 方法

  • 描述

    java.io.File.length()返回此抽象路径名定义的文件的长度。如果此路径名定义目录,则未指定返回值。
  • 声明

    以下是java.io.File.length()方法的声明-
     public long length()
  • 参数

    不适用
  • 返回值

    该方法返回此抽象路径名表示的文件的长度(以字节为单位)。
  • 异常

    SecurityException如果安全管理器存在并且其SecurityManager.checkRead(java.lang.String)方法拒绝对该文件的读取访问
  • 例子

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