Java 中的重新命名檔案
操作檔案是程式設計的一個重要方面,而重命名檔案是開發人員經常遇到的常見操作。本文示範如何使用 Java 重新命名文件並解決以下問題:
我們可以重新命名文件,例如將 test.txt 重新命名為 test1.txt 嗎?
可以,在 Java 中重新命名檔案是一個簡單的操作。
如果 test1.txt 存在,是否會重新命名?
預設情況下,Java 重新命名時不會覆蓋現有檔案。如果 test1.txt 已存在,則會拋出例外狀況。
我們如何將檔案重新命名為現有的 test1.txt 檔案並將其內容附加到其中?
為了實現這一點,我們需要使用 FileWriter 類別。以下程式碼片段說明如何重新命名檔案並將其內容附加到現有檔案:
File file = new File("test.txt"); File file2 = new File("test1.txt"); if (file2.exists()) { // File exists, append contents to it FileWriter out = new FileWriter(file2, true); out.write("New contents to be appended"); out.close(); // Rename the original file to another name File file3 = new File("test_old.txt"); boolean success = file.renameTo(file3); if (!success) { // File was not successfully renamed } } else { // File does not exist, rename it boolean success = file.renameTo(file2); if (!success) { // File was not successfully renamed } }
以上是如何在 Java 中重新命名檔案、處理覆蓋和追加?的詳細內容。更多資訊請關注PHP中文網其他相關文章!