java File改名和剪切

File类下有一个renameTo()方法

File file1 = new File("xxx.txt");

File file2 = new File("ooo.txt");

file1.renameTo(fiel2);

此时file1和file2的路径相同,因此是将xxx.txt文件改名为ooo.txt文件

File file1 = new File("xxx.txt");

File file2 = new File("D:\\ooo.txt");

file1.renameTo(fiel2);

此时file1和file2的路径不同,因此是将xxx.txt文件剪切到D盘下,新文件名为ooo.txt

你可能感兴趣的:(java)