/*
将"C:\\JavaProducts\\Source"下的所有数据复制到"C:\\Target"下
*/ import java.io.*; public class JavaCopyDemo{
final static String SOURCESTRING = "C:\\JavaProducts\\Source";
final static String TARGETSTRING = "C:\\Target"; public static void main(String[] args){
if(!(new File(SOURCESTRING)).exists()){
System.out.println("源文件" + SOURCESTRING + "不存在,无法复制!");
return;
}else if((new File(TARGETSTRING)).exists()){
System.out.println("目标文件" + TARGETSTRING + "已经存在,无法复制!");
return;
}else{
if((new File(SOURCESTRING)).isFile()){
copyFile(new File(SOURCESTRING),new File(TARGETSTRING));
}else if((new File(SOURCESTRING)).isDirectory()){
copyDirectory(SOURCESTRING,TARGETSTRING);
}
}
} private static void copyFile(File sourceFile,File targetFile){
if(!sourceFile.canRead()){
System.out.println("源文件" + sourceFile.getAbsolutePath() + "不可读,无法复制!");
return;
}else{
System.out.println("开始复制文件" + sourceFile.getAbsolutePath() + "到" + targetFile.getAbsolutePath());
FileInputStream fis = null;
BufferedInputStream bis = null;
FileOutputStream fos = null;
BufferedOutputStream bos = null; try{
fis = new FileInputStream(sourceFile);
bis = new BufferedInputStream(fis);
fos = new FileOutputStream(targetFile);
bos = new BufferedOutputStream(fos);
int len = 0;
while((len = bis.read()) != -1){
bos.write(len);
}
bos.flush(); }catch(FileNotFoundException e){
e.printStackTrace();
}catch(IOException e){
e.printStackTrace();
}finally{
try{
if(fis != null){
fis.close();
}
if(bis != null){
bis.close();
}
if(fos != null){
fos.close();
}
if(bos != null){
bos.close();
}
System.out.println("文件" + sourceFile.getAbsolutePath() + "复制到" + targetFile.getAbsolutePath() + "完成");
}catch(IOException e){
e.printStackTrace();
}
}
}
} private static void copyDirectory(String sourcePathString,String targetPathString){
if(!new File(sourcePathString).canRead()){
System.out.println("源文件夹" + sourcePathString + "不可读,无法复制!");
return;
}else{
(new File(targetPathString)).mkdirs();
System.out.println("开始复制文件夹" + sourcePathString + "到" + targetPathString);
File[] files = new File(sourcePathString).listFiles();
for(int i = 0; i < files.length; i++){
if(files[i].isFile()){
copyFile(new File(sourcePathString + File.separator + files[i].getName()),new File(targetPathString + File.separator + files[i].getName()));
}else if(files[i].isDirectory()){
copyDirectory(sourcePathString + File.separator + files[i].getName(),targetPathString + File.separator + files[i].getName());
}
}
System.out.println("复制文件夹" + sourcePathString + "到" + targetPathString + "结束");
}
}
}

最新文章

  1. BZOJ 1040 树形DP+环套树
  2. JProfiler8 注册码序列号
  3. linux新增一块硬盘加入原有分区
  4. Android的SoundPool
  5. ANDROID_MARS学习笔记_S01原始版_012_广播机制一
  6. 初识CoreText
  7. PF_RING packet overwrites
  8. jquery.validate的效验方式
  9. 64位系统/32位系统下/8位CPU的数据宽度
  10. c语言统计字符数(判断a-z哪个字符出现次数最多)
  11. HTML5分析实战Web存储机制(Web Storage)
  12. linux --&gt; gcc编译之路径搜索
  13. Windows7下安装pyspark
  14. Python socket之tftp协议
  15. noip模拟ernd
  16. centos7 安装MySQL7 并更改初始化密码
  17. HDU1518 Square(DFS) 2016-07-24 15:08 49人阅读 评论(0) 收藏
  18. Restframework 认证authentication 组件实例-1
  19. C# 加密狗 超级狗 加密程序 程序授权示例 程序授权验证
  20. CodeForces 343D water tree(树链剖分)

热门文章

  1. 《深入理解Java虚拟机》学习笔记之字节码执行引擎
  2. C++ 11 学习3:显示虚函数重载(override)
  3. ThreadLocal笔记
  4. 队列工厂之RabbitMQ
  5. Android中的WebView实战详解(一)
  6. python 使用内置函数sorted对各种数据类型进行排序
  7. 源码分析Android Handler是如何实现线程间通信的
  8. spdlog源码阅读 (2): sinks的创建和使用
  9. 首个写博客的Android任务
  10. 【Java基础】通过getResourceAsStream() 加载资源文件