IO流复制图片

package IODemo;

/**
 * @author Alina
 * @date 2021年11月14日 4:32 下午
 * 复制文件到指定目录
 *
 */
import java.io.*;
public class IOcopyfile {
    public static void main(String[] args) {
        CopyDir(new File(“源文件”),new File(“目标文件”));
    }
    public static void CopyDir(File source,File target){
        //获取数据源下所有目录名字
        String SourceDirName = source.getName();
        //System.out.print(SourceDirName);
        //在新目录下创建同样的文档,只有File 类有创建文件的功能
        File TargetNewDir = new File(target,SourceDirName);
        // System.out.print(TargetNewDir);
        //创建新目录
        TargetNewDir.mkdir();

        //2.遍历数据源下所有文件
        File[] files = source.listFiles();
        //使用for循环遍历目录下所有文件
        for(File sourceFile: files){
           // System.out.print(sourceFile);
           // 定义字符串,存储文件的名字
            String sourceFileName = sourceFile.getName();
            //在新目录下创建相同的文件名
            File newTargetFileName = new File(TargetNewDir,sourceFileName);
            //复制文件
            copyFunction(sourceFile,newTargetFileName);

        }

    }
    public static void copyFunction(File source,File target){
        FileInputStream fis = null;
        FileOutputStream fos = null;
        try{
            fis = new FileInputStream(source);
            fos = new FileOutputStream(target);
            byte[]  bytes = new byte[1024];
            int s = 0;
            while ((s = fis.read(bytes))!=-1){
                fos.write(bytes,0,s);
            }
        }catch (Exception e){
            throw new RuntimeException("复制失败");
        }finally {
            try{
                if (fos != null){
                    fos.close();
                }
            }catch (Exception e){
                throw new RuntimeException("运行失败");
            }finally {
                try {
                    if (fis!=null) {
                        fis.close();
                    }
                }catch (Exception e){
                    throw new RuntimeException("运行失败");
                }
            }

        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值