Java将一个目录下的所有数据复制到另一个目录下
- /*
- 将"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 + "结束");
- }
- }
- }
Java将一个目录下的所有数据复制到另一个目录下的更多相关文章
- Linux将一个文件夹或文件夹下的所有内容复制到另一个文件夹
Linux将一个文件夹或文件夹下的所有内容复制到另一个文件夹 1.将一个文件夹下的所有内容复制到另一个文件夹下 cp -r /home/packageA/* /home/cp/packageB ...
- SQL把表中的数据复制到另一个数据库中
1 删除整张表的数据,并还原自增长值TRUNCATE TABLE TbWeixinActivity 2 3张表左连接select a.ID,c.Name,b.nickname,a.CreateDate ...
- SQL数据库中把一个表中的数据复制到另一个表中
1.如果是整个表复制表达如下: insert into table1 select * from table2 2.如果是有选择性的复制数据表达如下: insert into table1(colu ...
- 将一个Head下的Line复制到另一个Head下(ef+linq)
今天工作中有一个需求,要求将一个Item下的Line复制到另外一个Item下面 这个需求在工作中很多,按照以往的经验肯定是先delete from,然后再一条条遍历后insert into 这两天正好 ...
- SQL SERVER 将一个数据库中的表和数据复制到另一个数据库中
第一种情况:将A数据库.dbo.A表的数据追加到B数据库.dbo.B表中 (条件:此时B数据库中已创建好了B表) insert into B数据库.dbo.B表 select * from A数据库. ...
- Linux 将文件夹下的所有文件复制到另一个文件里
如何将文件夹/home/work下的文件复制到/home/temp里面? 使用命令: cp -R /home/work/* /home/temp *表示所有文件 但是/home/work 下的隐藏文件 ...
- oracle把一个表的数据复制到另一个表中
http://blog.csdn.net/my_name_nb/article/details/64128015 ........................ 1. 新增一个表,通过另一个表的结构 ...
- mui实现分页上拉加载更多 下拉刷新数据的简单实现 移动端下拉上拉
空下来把mui上拉加载更多,下拉刷新数据做了一个简单的实现,希望可以帮助到需要的朋友 demo项目的结构 <!DOCTYPE html> <html> <head> ...
- 把一个List<T>的数据复制至另一个List<T>
把一个数据集List<T>复制至到另一个数据集List<T>. 方法一,可以使用循环,然后把每一个T添加至另一个集合中去: public void ListDemo() { , ...
随机推荐
- Python入门教程(3)
人生苦短,我学Pyhton Python(英语发音:/ˈpaɪθən/), 是一种面向对象.解释型计算机程序设计语言,由Guido van Rossum于1989年底发明,第一个公开发行版发行于199 ...
- rdb map出错rbd sysfs write failed
创建了一个rbd镜像 $ rbd create --size 4096 docker_test 然后,在Ceph client端将该rbd镜像映射为本地设备时出错. $ rbd map docker_ ...
- Linux使用小笔记<安装篇>
问题一:在windows下删除ubuntu并修复引导windows启动. 1. 下载MBRFix工具,放在c盘,利用命令提示符,进入软件所在目录,cd c:\mbrfix 2.输入 MBRFix /d ...
- How to build mscorlib.dll with visual studio
Recently, Microsoft Corportation has released a new look for .NET Reference Source. And you may find ...
- AndroidStudio运行项目出现Unsupported method: AndroidProject.getPluginGeneration()错误解决办法
一.错误描述 今天在使用AndroidStudio运行项目时出现了一个Unsupported method: AndroidProject.getPluginGeneration()错误,如下图所示: ...
- 深入理解Python中协程的应用机制: 使用纯Python来实现一个操作系统吧!!
本文参考:http://www.dabeaz.com/coroutines/ 作者:David Beazley 缘起: 本人最近在学习python的协程.偶然发现了David Beazley的co ...
- SPM HW1 A project
项目分析 --民航航班异常轨迹可视分析 最近完成的一个项目是一个可视化大作业--民航航班异常轨迹可视分析.要求利用已给的8G飞机的飞行记录数据,将飞机的飞行轨迹在浏览器中进行飞行轨迹高维可视化以及对异 ...
- switch 在什么时候可以不写default
var point = (2,17) switch point { //case (var x,17): // print("x = \(x)") case (var x,v ...
- java内部发送http请求并取得返回结果,修改response的cookie
public Object userLogin(HttpServletRequest request, HttpServletResponse response, String email, Stri ...
- linux上执行 xhost unable to open display
linux下执行xhost命令报错:unable to open display,解决方法,linux 下通过xhost进入图形界面,经常会出现报错"unable to open disp ...