這篇文章主要介紹了java 實作資料夾的拷貝實例程式碼的相關資料,需要的朋友可以參考下
java 實作資料夾的拷貝實例程式碼
就直接上程式碼,所以廢話不多說,很簡單很實用。
實例程式碼:
import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; public class CopyFile { public static void copy(String sourceFile , String targetFile) throws Exception{ FileInputStream in = null; FileOutputStream out = null; try{ in = new FileInputStream(new File(sourceFile)); out = new FileOutputStream(new File(targetFile)); int c; while ((c = in.read()) != -1 ){ out.write(c); } } finally{ if (in != null){ in.close(); } if(out != null){ out.close(); } } } public static void main(String[] agrs) throws Exception{ String filedir = "./tupu0"; String targetDir = "./MovieList/"; File directory = new File(filedir); File[] fileList = directory.listFiles(); for(int i=0; i<fileList.length; i++){ String sourceFile = "./tupu0/" + fileList[i].getName() + "/" + fileList[i].getName() +".txt"; String targetFile = targetDir + fileList[i].getName(); System.out.println(fileList[i].getName()); copy(sourceFile, targetFile); } } }
【相關推薦】
#1. Java免費影片教學
3. FastJson教學手冊
以上是對資料夾進行拷貝的程式碼範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!