當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java File length()用法及代碼示例


length()函數是Java中File類的一部分。該函數返回此抽象路徑名為length表示的文件的長度。該函數返回代表位數的long值,如果文件不存在或發生異常,則返回0L。

函數簽名:

public long length()

用法:


long var = file.length();

參數:此方法不接受任何參數。

返回類型該函數返回的long數據類型以位為單位表示文件的長度。

異常:如果對文件的寫訪問被拒絕,則此方法將引發安全性異常

以下示例程序旨在說明length()函數的用法:

範例1:文件“F:\\program.txt”是F:目錄中的現有文件。

// Java program to demonstrate 
// length() method of File Class 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        // Get the file 
        File f = new File("F:\\program.txt"); 
  
        // Get the length of the file 
        System.out.println("length: "
                           + f.length()); 
    } 
}

輸出:

length: 100000

範例2:文件“F:\\program1.txt”為空

// Java program to demonstrate 
// length() method of File Class 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        // Get the file 
        File f = new File("F:\\program.txt"); 
  
        // Get the length of the file 
        System.out.println("length: "
                           + f.length()); 
    } 
}

輸出:

length: 0

注意:程序可能無法在在線IDE中運行。請使用離線IDE並設置文件的路徑。



相關用法


注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 File length() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。