洛城闻笛 发表于 2019-4-15 16:16:36

java中的I/O流的read()与write()方法



        byte[] flush=new byte;
        int len=0;
        //读取
        while (-1!=(len=is.read(flush))){
                //写出
                os.write(flush, 0, len);
                }



1.我的输入流是个文件有750个字节,然后我现在的缓冲数组是flush是1024个字节,然后我查了API发现read(byte[] b)是个阻塞方法,所以是不是读取的时候没有超出1024就会一只读取啊

2.写出的时候那个0 到底是什么意思啊,比如我文件是2048个字节,我第一次读了1024个字节,那么len=1024,执行os.write(flush, 0, len);输出了1024个,下次我再循环是从1024开始读到2048,那么len=2048,为什么还要从0开始写出呢?

Krant5 发表于 2019-4-15 17:05:37

read 是不是阻塞方法取决于调用read的对象是什么类型的,你这没头没尾的,另外 write(buff,startpos,length) 你可以看文档的,或者看源码?举手之劳

洛城闻笛 发表于 2019-4-15 17:16:29

public void mergeFile(String destPath) throws IOException {
                // 创建源
                File dest = new File(destPath);
                // 选择流
                BufferedOutputStream bos = null;// 输出流

                try {
                        bos = new BufferedOutputStream(new FileOutputStream(dest,true));//追加
                        BufferedInputStream bis = null;
                        for (int i = 0; i < this.blockPath.size(); i++) {
                                bis = new BufferedInputStream(new FileInputStream(new File(this.blockPath.get(i))));
                               
                                // 缓冲区
                                byte[] flush = new byte;
                                int len = 0;
                                while (-1 != (len = bis.read(flush))) {
                                        bos.write(flush, i, len);
                                }
                                bos.flush();
                                bis.close();
                               
                        }
                } catch (IOException e) {
                        e.printStackTrace();
                }finally{
                        bos.close();
                }

洛城闻笛 发表于 2019-4-15 17:17:05

Krant5 发表于 2019-4-15 17:05
read 是不是阻塞方法取决于调用read的对象是什么类型的,你这没头没尾的,另外 write(buff,startpos,length)...

我把这个方法的代码发出来,你看下

Krant5 发表于 2019-4-15 17:26:10

1. 文件只有750个字节,读取1024,会直接读到750个字节到达文件尾部,read会返回
2. write 的三个参数,缓冲区, 起始位置,写的长度
页: [1]
查看完整版本: java中的I/O流的read()与write()方法