使用File对象重命名文件
import java.io.File; import java.io.IOException;//时 代 J a v a 公 众 号 - N o w J a v a . c o m 提 供 public class Main { public static void main(String[] arg) throws IOException { File f = new File("c:/myfile.txt"); if (f.renameTo(new File("c:/savedmyfile.txt"))) System.out.println("File renamed."); else System.out.println("File not renamed."); } }