黑马程序员技术交流社区

标题: 序列流的作用 [打印本页]

作者: ninini    时间: 2016-6-2 01:56
标题: 序列流的作用
SequenceInputStream(InputStream, InputStream)
       
                        FileInputStream fis1 = new FileInputStream("a.txt");                       
                        FileInputStream fis2 = new FileInputStream("b.txt");                       
                        SequenceInputStream sis = new SequenceInputStream(fis1, fis2);        //将两个流整合成一个流
                        FileOutputStream fos = new FileOutputStream("c.txt");                        //创建输出流对象,关联c.txt
                       
                        int b;
                        while((b = sis.read()) != -1) {                                                                        //用整合后的读
                                fos.write(b);                                                                                                //写到指定文件上
                        }
                       
                        sis.close();
                        fos.close();




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2