java文件操作對象類完成復制文件和文件歸並。本站提示廣大學習愛好者:(java文件操作對象類完成復制文件和文件歸並)文章只能為提供參考,不一定能成為您想要的結果。以下是java文件操作對象類完成復制文件和文件歸並正文
兩個辦法:
1、復制一個目次上面的一切文件和文件夾
2、將一個文件目次上面的一切文本文件歸並到統一個文件中
package com.firewolf.test;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
public class FileReaderUtil {
public static void main(String[] args){
try {
//mergeFile(new File("C:/Documents and Settings/liuxing0/桌面/新建文件夾/script"), new File("D:/all.sql"));
copyFiles(new File("G:/進修材料/筆記"),new File("G:/Test"));
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 拷貝某個文件目次上面的一切文件,
* @param sourcePath 原文件目次
* @param desPath 目標文件目次
*/
private static void copyFiles(File sourceFile,File desFile) throws IOException{
if(sourceFile.isFile()){
File file = new File(desFile.getPath()+"/"+sourceFile.getName());
FileInputStream fis = new FileInputStream(sourceFile);
FileOutputStream fos = new FileOutputStream(file);
int len = 0;
byte[] buf = new byte[1024];
while((len = fis.read(buf)) != -1)
fos.write(buf,0,len);
}else{
File dir = new File(desFile.getPath()+"/"+sourceFile.getName());
if(!dir.exists())
dir.mkdir();
String[] names = sourceFile.list();
for (int i = 0; i < names.length; i++) {
copyFiles(new File(sourceFile.getPath()+"/"+names[i]),dir);
}
}
}
/**
* 將一個文件目次上面的一切文件獨到一個文件中的辦法(重要用於將許多文本文件歸並到一路)
* @param sourceFile
* @param decFile
* @return
* @throws IOException
*/
private static File mergeFile(File sourceFile,File decFile) throws IOException{
String[] fileList = sourceFile.list();
for (String string : fileList) {
File file = new File(sourceFile.getPath()+"/"+string);
if(!file.isDirectory()){
FileInputStream fis = new FileInputStream(file);
FileOutputStream fos = new FileOutputStream(decFile, true);
byte[] buffer = new byte[1024];
int len = 0;
while((len= fis.read(buffer)) != -1)
fos.write(buffer, 0, len);
}
else {
decFile = mergeFile(file,decFile);
}
}
return decFile;
}
}