2021-05-02
2021/5/2 18:28:54
本文主要是介绍2021-05-02,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
java复制文件到其他目录下
package Exercise.utils; import java.io.*; import java.util.ArrayList; import java.util.List; public class Clone { public static void main(String[] args) { ArrayList<String> list = new ArrayList<>(); copy(new File("C:\\Users\\admin\\Desktop\\ajax"),new File("E:\\前端资料\\File"),list); System.out.println(list); } // /** *@author shark *@date 2021/5/2 17:06 *desc */ public static void copy(File src, File des, List l){ // l数组保存需要拷贝文件的文件夹和子文件夹 if (src.isDirectory()){ if (l.size() == 0){ l.add(src.getAbsolutePath().substring(src.getAbsolutePath().lastIndexOf("\\"))); System.out.println(des.getAbsolutePath()+l.get(0)); }else{ String s = (String) l.get(0); l.add(src.getAbsolutePath().substring(src.getAbsolutePath().lastIndexOf(s))); } } // 利用递归去复制 File[] files =src.listFiles(); for (File item : files) { if (item.isDirectory()) { copy(item, des, l); } else { new File(des.getAbsolutePath() + l.get(l.size() - 1)).mkdir(); FileInputStream fis = null; FileOutputStream fos = null; try { byte[] bytes = new byte[1024]; fis = new FileInputStream(item); fos = new FileOutputStream(des.getAbsolutePath() + item.getAbsolutePath().substring(src.getAbsolutePath().lastIndexOf((String) l.get(0)))); int index = 0; while ((index = fis.read(bytes)) != -1) { fos.write(bytes, 0, index); fos.flush(); } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (fis != null) { try { fis.close(); } catch (IOException e) { e.printStackTrace(); } } if (fos != null) { try { fis.close(); } catch (IOException e) { e.printStackTrace(); } } } } } } }
需要拷贝的目录
需要复制到的目录
启动程序
这篇关于2021-05-02的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Java中定时任务实现方式及源码剖析
- 2024-11-24Java中定时任务实现方式及源码剖析
- 2024-11-24鸿蒙原生开发手记:03-元服务开发全流程(开发元服务,只需要看这一篇文章)
- 2024-11-24细说敏捷:敏捷四会之每日站会
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解