- 复制文件方法
/**
* 复制文件
* 把源文件sourceFile复制到目标文件distFile中
*
* @param sourceFile
* @param distFile
* @return
*/
public boolean copyFile(
String sourceFile,
String distFile
) {
// 输入流
BufferedInputStream bis = null;
// 输出流
BufferedOutputStream bos = null;
try {
// 输入流
bis = new BufferedInputStream(new FileInputStream(sourceFile));
// 输出流
bos = new BufferedOutputStream(new FileOutputStream(distFile));
int readLen;
// --- 开始copy
byte[] buf = new byte[8192];
while ((readLen = bis.read(buf)) > -1) {
bos.write(buf, 0, readLen);
}
} catch (IOException e) {
e.printStackTrace();
return false;
} finally {
// 关闭
try {
if (bis != null) {
bis.close();
}
if (bos != null) {
bos.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
return true;
}
- 目录复制方法
/**
* 复制目录
* 把源目录oldDir中的内容复制到目标目录newDir中
*
* @param oldDir
* @param newDir
*/
public void copyDir(
String oldDir,
String newDir
) {
// 检查目标文件夹newDir是否存在
File newDirFile = new File(newDir);
if (!newDirFile.exists()) {
newDirFile.mkdirs();
}
// 旧目录文件
File f1 = new File(oldDir);
// 旧目录下的文件数组
File[] files = f1.listFiles();
// 定义新目标地址
String newTarget;
// 遍历文件数组
for (File ff : files) {
// 如果是文件,直接复制
if (!ff.isDirectory()) {
newTarget = newDir + File.separator + ff.getName();
copyFile(ff.getAbsolutePath(), newTarget);
}
// 如果是文件夹,运用递归进行文件夹的复制
else {
// 递归复制
copyDir(oldDir + File.separator + ff.getName(), newDir + File.separator + ff.getName());
}
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/70373.html