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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

        public static void mothed_2() {
                ArrayList<FileInputStream> list = new ArrayList<>();
                SequenceInputStream sis = null;
                FileOutputStream fos = null;
               
                try {
                        list.add(new FileInputStream("e:\\copyfile\\1.txt"));
                        list.add(new FileInputStream("e:\\copyfile\\2.txt"));
                        list.add(new FileInputStream("e:\\copyfile\\3.txt"));
                       
                        Enumeration<FileInputStream> em = Collections.enumeration(list);
                        sis = new SequenceInputStream(em);
                        fos = new FileOutputStream("e:\\copyfile\\4.txt");
                       
                        byte[] buf = new byte[1024];
                        int len = 0;
                        while((len = sis.read(buf)) != -1){
                                fos.write(buf,0,len);
                        }
                } catch (FileNotFoundException e) {
                        e.printStackTrace();
                } catch (IOException e) {
                        e.printStackTrace();
                }finally{
                        if(fos == null)
                                try {
                                        fos.close();
                                } catch (IOException e) {
                                        e.printStackTrace();
                                }
                        if(sis == null)
                                try {
                                        sis.close();
                                } catch (IOException e) {
                                        e.printStackTrace();
                                }
                }
        }

1 个回复

倒序浏览
一起努力吧,加油!!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马