位置:首頁 > Java技術 > Java.io包 > Java.io.File.length()方法實例

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