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


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


renameTo()方法是File類的一部分。 renameTo()函數用於將文件的抽象路徑名重命名為給定的路徑名​​。如果文件被重命名,該函數返回true,否則返回false

函數簽名:

public boolean renameTo(File destination)

用法:


file.renameTo(File destination)

參數:該函數需要File對象的目標位置作為參數,即當前文件的新抽象路徑名。

返回值:該函數返回布爾數據類型。該函數返回true文件已重命名,否則返回false

異常:此方法引發以下異常:

  • 安全異常 如果該方法不允許抽象路徑名的寫操作。
  • NullPointerException 如果目標文件名為null。

下麵的程序將說明renameTo()函數的用法:

範例1:嘗試將文件program.txt重命名為program1.txt

// Java program to demonstrate 
// the use of File.renameTo() method 
  
import java.io.*; 
  
public class GFG { 
  
    public static void main(String args[]) 
    { 
        // create an abstract pathname (File object) 
        File f = new File("F:\\program.txt"); 
  
        // create the destination file object 
        File dest = new File("F:\\program1.txt"); 
  
        // check if the file can be renamed 
        // to the abstract path name 
        if (f.renameTo(dest)) { 
  
            // display that the file is renamed 
            // to the abstract path name 
            System.out.println("File is renamed"); 
        } 
        else { 
            // display that the file cannot be renamed 
            // to the abstract path name 
            System.out.println("File cannot be renamed"); 
        } 
    } 
}

輸出:

File is renamed

範例2:嘗試將“program1.txt”重命名為“prog.txt”,“prog.txt”是f:驅動器中的現有文件。

// Java program to demonstrate 
// the use of File.renameTo() method 
  
import java.io.*; 
  
public class GFG { 
    public static void main(String args[]) 
    { 
        // create an abstract pathname (File object) 
        File f = new File("F:\\program1.txt"); 
  
        // create the destination file object 
        File dest = new File("F:\\prog.txt"); 
  
        // check if the file can be renamed 
        // to the abstract path name 
        if (f.renameTo(dest)) { 
  
            // display that the file is renamed 
            // to the abstract path name 
            System.out.println("File is renamed"); 
        } 
        else { 
            // display that the file cannot be renamed 
            // to the abstract path name 
            System.out.println("File cannot be renamed"); 
        } 
    } 
}

輸出:

File cannot be renamed

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



相關用法


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