1. 程式人生 > >Java檔案移動到指定的檔案中

Java檔案移動到指定的檔案中

public class Test {

public static void main(String[] args) {
File file=new File("D:\\helloWorld.txt");
if(file.isFile()){
System.out.println("it is a exists");
file.renameTo(new File("D:\\IOTest\\"+file.getName()));
}else{
try {
file.createNewFile();
System.out.println("excute");
} catch (IOException e) {

e.printStackTrace();
}
}
}


}

匯入需要的包資源,這個eclipse會自動提示。之前碰到一個前輩的部落格,感覺出了問題,於是自己測試了一下,方法可行。如果第一次測試的還沒有.txt檔案需要執行兩遍。