Phương thức renameTo() của lớp File được sử dụng để đổi tên file trong java. Phương thức này phụ thuộc vào hệ điều hành, ví dụ bạn có thể đổi tên file thành công trên *nix, nhưng thất bại trên Windows.
Dưới đây là ví dụ về đổi tên file trong java
File: RenameFileExample.java
import java.io.File; public class RenameFileExample { public static void main(String[] args) { File oldfile = new File("D:\\oldfile.txt"); File newfile = new File("D:\\newfile.txt"); if (oldfile.renameTo(newfile)) { System.out.println("Rename succesful"); } else { System.out.println("Rename failed"); } } }