为了账号安全,请及时绑定邮箱和手机立即绑定

copyfile的方法

我想请问一下能不能用老师讲的 读的  第一种方法 然后进行边读边写  就是读一个写一个

正在回答

1 回答

老师讲了几种copy方法,都是边读边写,我自己写了一个Demo你看看是不是这个意思。

public class FISDemo {
    public static void main(String[] args) throws IOException {
        FileInputStream fis = new FileInputStream("demo");
        FileOutputStream fos = new FileOutputStream("demo-copy");

        //如果没读完就一直读
        for (int b; (b = fis.read()) != -1; ) {
            fos.write(b);    //把读到的一个字节写入 demo-copy
        }

        fis.close();
        fos.close();
    }
}


1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

copyfile的方法

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信