JAVA IO - 移動文件

JAVA IO 沒有提供直接的移動方法,可是可移動renameTo來實現移動文件。 java

import java.io.File;


public class MoveFileExample {
	public static void main(String[] args)
    {	
    	try{
 
    	   File afile =new File("C:\\work\\hello\\helloworld.txt");
 
    	   if(afile.renameTo(new File("C:\\work\\hello\\hello\\" + afile.getName()))){
    		System.out.println("File is moved successful!");
    	   }else{
    		System.out.println("File is failed to move!");
    	   }
 
    	}catch(Exception e){
    		e.printStackTrace();
    	}
    }
}
相關文章
相關標籤/搜索