Java 范例 - 文件重命名
File 类的 oldName.renameTo(newName) 方法可以重命名文件
import java.io.File; public class Main { public static void main(String[] args) { File oldName = new File("C:/program.txt"); File newName = new File("C:/java.txt"); if(oldName.renameTo(newName)) { System.out.println("已重命名"); } else { System.out.println("Error"); } } }
编译运行以上代码,输出结果如下 ( 执行该程序前你可以先创建 program.txt 文件)
已重命名