测开笔记——InputStream和OutputStream练习(复制文件到目标位置)

case:实现文件复制,从指定位置复制到目标位置
* 思考,若指定文件不存在?
* 若目标位置文件已存在?
* 若目标位置目录不存在?

private static void case1() {
        File btxt = new File("D:\\demo\\login.txt");
        String txtName = btxt.getName();
        InputStream txtFileInputStream = null;
        try {
            // 指定位置,获取文件内容
            txtFileInputStream = new BufferedInputStream(new FileInputStream(btxt));
            byte[] bytes = new byte[100];
            int readCount = 0;
            String result = null;
            while ((readCount = txtFileInputStream.read(bytes)) != -1 ){
                result = new String(bytes, 0, readCount);
                System.out.println("result = " + result);
            }
            // 目标位置判断是否文件存在,并且粘贴内容
            File ctxt = new File("D:\\demo2\\"+txtName);
            // 文件不存在或目录不存在时,创建目录和文件
            boolean newFile = true;
            if (!ctxt.exists()) {
                boolean mkdirs = ctxt.mkdirs();
                boolean delete = ctxt.delete();
                newFile = ctxt.createNewFile();
            }
            if (newFile){
                FileOutputStream fileOutputStream = new FileOutputStream(ctxt);
                if (result != null) {
                    fileOutputStream.write(result.getBytes());
                }
            }else {
                System.out.println("文件创建失败");
            }
        } catch (FileNotFoundException notFoundException){
            // 若指定文件不存在?
            try {
                btxt.createNewFile();
            } catch (IOException ioException) {
                ioException.printStackTrace();
            }
        } catch (IOException ioException) {
            ioException.printStackTrace();
        }finally {
            try {
                txtFileInputStream.close();
            } catch (IOException ioException) {
                ioException.printStackTrace();
            }
        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值