A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© star皆空 中级黑马   /  2016-10-23 00:34  /  630 人查看  /  0 人回复  /   1 人收藏 转载请遵从CC协议 禁止商业使用本文

package com.heima.tets;

import java.awt.image.BufferedImage;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Scanner;

public class Test4 {

        /**
         *实现需求:在控制台录入文件的路径,将文件拷贝到当前项目下
         * @throws IOException
         */
        public static void main(String[] args) throws IOException {
                //创建键盘录入对象
                Scanner sc = new Scanner(System.in);
                System.out.println("请输入一个文件路径:");
                String line = sc.nextLine();
                File file = new File(line);//封装成file对象
                //判断
                if(!file.exists()){
                        System.out.println("您录入的路径不存在");
                }else if(file.isDirectory()){
                        System.out.println("您录入的是文件夹,请重新录入");
                }
                BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));//创建输入流
                //创建输出流
                BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(file.getName()));
                int b;
                while((b=bis.read())!=-1){
                        bos.write(b);
                }
                bis.close();
                bos.close();
        }

}


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马