1. /*
  2. 将"C:\\JavaProducts\\Source"下的所有数据复制到"C:\\Target"下
  3. */
  4.  
  5. import java.io.*;
  6.  
  7. public class JavaCopyDemo{
  8. final static String SOURCESTRING = "C:\\JavaProducts\\Source";
  9. final static String TARGETSTRING = "C:\\Target";
  10.  
  11. public static void main(String[] args){
  12. if(!(new File(SOURCESTRING)).exists()){
  13. System.out.println("源文件" + SOURCESTRING + "不存在,无法复制!");
  14. return;
  15. }else if((new File(TARGETSTRING)).exists()){
  16. System.out.println("目标文件" + TARGETSTRING + "已经存在,无法复制!");
  17. return;
  18. }else{
  19. if((new File(SOURCESTRING)).isFile()){
  20. copyFile(new File(SOURCESTRING),new File(TARGETSTRING));
  21. }else if((new File(SOURCESTRING)).isDirectory()){
  22. copyDirectory(SOURCESTRING,TARGETSTRING);
  23. }
  24. }
  25. }
  26.  
  27. private static void copyFile(File sourceFile,File targetFile){
  28. if(!sourceFile.canRead()){
  29. System.out.println("源文件" + sourceFile.getAbsolutePath() + "不可读,无法复制!");
  30. return;
  31. }else{
  32. System.out.println("开始复制文件" + sourceFile.getAbsolutePath() + "到" + targetFile.getAbsolutePath());
  33. FileInputStream fis = null;
  34. BufferedInputStream bis = null;
  35. FileOutputStream fos = null;
  36. BufferedOutputStream bos = null;
  37.  
  38. try{
  39. fis = new FileInputStream(sourceFile);
  40. bis = new BufferedInputStream(fis);
  41. fos = new FileOutputStream(targetFile);
  42. bos = new BufferedOutputStream(fos);
  43. int len = 0;
  44. while((len = bis.read()) != -1){
  45. bos.write(len);
  46. }
  47. bos.flush();
  48.  
  49. }catch(FileNotFoundException e){
  50. e.printStackTrace();
  51. }catch(IOException e){
  52. e.printStackTrace();
  53. }finally{
  54. try{
  55. if(fis != null){
  56. fis.close();
  57. }
  58. if(bis != null){
  59. bis.close();
  60. }
  61. if(fos != null){
  62. fos.close();
  63. }
  64. if(bos != null){
  65. bos.close();
  66. }
  67. System.out.println("文件" + sourceFile.getAbsolutePath() + "复制到" + targetFile.getAbsolutePath() + "完成");
  68. }catch(IOException e){
  69. e.printStackTrace();
  70. }
  71. }
  72. }
  73. }
  74.  
  75. private static void copyDirectory(String sourcePathString,String targetPathString){
  76. if(!new File(sourcePathString).canRead()){
  77. System.out.println("源文件夹" + sourcePathString + "不可读,无法复制!");
  78. return;
  79. }else{
  80. (new File(targetPathString)).mkdirs();
  81. System.out.println("开始复制文件夹" + sourcePathString + "到" + targetPathString);
  82. File[] files = new File(sourcePathString).listFiles();
  83. for(int i = 0; i < files.length; i++){
  84. if(files[i].isFile()){
  85. copyFile(new File(sourcePathString + File.separator + files[i].getName()),new File(targetPathString + File.separator + files[i].getName()));
  86. }else if(files[i].isDirectory()){
  87. copyDirectory(sourcePathString + File.separator + files[i].getName(),targetPathString + File.separator + files[i].getName());
  88. }
  89. }
  90. System.out.println("复制文件夹" + sourcePathString + "到" + targetPathString + "结束");
  91. }
  92. }
  93. }

Java将一个目录下的所有数据复制到另一个目录下的更多相关文章

  1. Linux将一个文件夹或文件夹下的所有内容复制到另一个文件夹

    Linux将一个文件夹或文件夹下的所有内容复制到另一个文件夹     1.将一个文件夹下的所有内容复制到另一个文件夹下 cp -r /home/packageA/* /home/cp/packageB ...

  2. SQL把表中的数据复制到另一个数据库中

    1 删除整张表的数据,并还原自增长值TRUNCATE TABLE TbWeixinActivity 2 3张表左连接select a.ID,c.Name,b.nickname,a.CreateDate ...

  3. SQL数据库中把一个表中的数据复制到另一个表中

    1.如果是整个表复制表达如下: insert into table1 select  * from table2 2.如果是有选择性的复制数据表达如下: insert into table1(colu ...

  4. 将一个Head下的Line复制到另一个Head下(ef+linq)

    今天工作中有一个需求,要求将一个Item下的Line复制到另外一个Item下面 这个需求在工作中很多,按照以往的经验肯定是先delete from,然后再一条条遍历后insert into 这两天正好 ...

  5. SQL SERVER 将一个数据库中的表和数据复制到另一个数据库中

    第一种情况:将A数据库.dbo.A表的数据追加到B数据库.dbo.B表中 (条件:此时B数据库中已创建好了B表) insert into B数据库.dbo.B表 select * from A数据库. ...

  6. Linux 将文件夹下的所有文件复制到另一个文件里

    如何将文件夹/home/work下的文件复制到/home/temp里面? 使用命令: cp -R /home/work/* /home/temp *表示所有文件 但是/home/work 下的隐藏文件 ...

  7. oracle把一个表的数据复制到另一个表中

    http://blog.csdn.net/my_name_nb/article/details/64128015 ........................ 1. 新增一个表,通过另一个表的结构 ...

  8. mui实现分页上拉加载更多 下拉刷新数据的简单实现 移动端下拉上拉

    空下来把mui上拉加载更多,下拉刷新数据做了一个简单的实现,希望可以帮助到需要的朋友 demo项目的结构 <!DOCTYPE html> <html> <head> ...

  9. 把一个List<T>的数据复制至另一个List<T>

    把一个数据集List<T>复制至到另一个数据集List<T>. 方法一,可以使用循环,然后把每一个T添加至另一个集合中去: public void ListDemo() { , ...

随机推荐

  1. Python入门教程(3)

    人生苦短,我学Pyhton Python(英语发音:/ˈpaɪθən/), 是一种面向对象.解释型计算机程序设计语言,由Guido van Rossum于1989年底发明,第一个公开发行版发行于199 ...

  2. rdb map出错rbd sysfs write failed

    创建了一个rbd镜像 $ rbd create --size 4096 docker_test 然后,在Ceph client端将该rbd镜像映射为本地设备时出错. $ rbd map docker_ ...

  3. Linux使用小笔记<安装篇>

    问题一:在windows下删除ubuntu并修复引导windows启动. 1. 下载MBRFix工具,放在c盘,利用命令提示符,进入软件所在目录,cd c:\mbrfix 2.输入 MBRFix /d ...

  4. How to build mscorlib.dll with visual studio

    Recently, Microsoft Corportation has released a new look for .NET Reference Source. And you may find ...

  5. AndroidStudio运行项目出现Unsupported method: AndroidProject.getPluginGeneration()错误解决办法

    一.错误描述 今天在使用AndroidStudio运行项目时出现了一个Unsupported method: AndroidProject.getPluginGeneration()错误,如下图所示: ...

  6. 深入理解Python中协程的应用机制: 使用纯Python来实现一个操作系统吧!!

    本文参考:http://www.dabeaz.com/coroutines/   作者:David Beazley 缘起: 本人最近在学习python的协程.偶然发现了David Beazley的co ...

  7. SPM HW1 A project

    项目分析 --民航航班异常轨迹可视分析 最近完成的一个项目是一个可视化大作业--民航航班异常轨迹可视分析.要求利用已给的8G飞机的飞行记录数据,将飞机的飞行轨迹在浏览器中进行飞行轨迹高维可视化以及对异 ...

  8. switch 在什么时候可以不写default

    var point = (2,17) switch point { //case (var x,17): //    print("x = \(x)") case (var x,v ...

  9. java内部发送http请求并取得返回结果,修改response的cookie

    public Object userLogin(HttpServletRequest request, HttpServletResponse response, String email, Stri ...

  10. linux上执行 xhost unable to open display

    linux下执行xhost命令报错:unable to open display,解决方法,linux 下通过xhost进入图形界面,经常会出现报错"unable to  open disp ...