如何给一个文件重命名?

将a.txt重命名为b.txt
File file=new File("d:\\tmp\\a.txt");
File file2=new File("d:\\tmp\\b.txt");
String s=file.getName();
file.renameTo(file2);

本文出自 “紫晶幻治” 博客,转载请与作者联系!

你可能感兴趣的:(职场,文件,休闲)