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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. package com.test;

  2. import java.io.FileInputStream;
  3. import java.io.FileNotFoundException;
  4. import java.io.FileOutputStream;
  5. import java.io.IOException;
  6. import java.io.SequenceInputStream;
  7. import java.util.Enumeration;
  8. import java.util.Vector;

  9. public class Test1 {
  10.         public static void main(String[] args) {
  11.                 //将多个文件的内容整个成一个文件
  12.                 Vector<FileInputStream> v=new Vector<FileInputStream>();
  13.                 try {
  14.                         v.add(new FileInputStream("e:\\1.txt"));//添加多个文件
  15.                         v.add(new FileInputStream("e:\\2.txt"));
  16.                         v.add(new FileInputStream("e:\\3.txt"));
  17.                         Enumeration<FileInputStream> en=v.elements();
  18.                         SequenceInputStream sis=new SequenceInputStream(en);
  19.                         FileOutputStream out=new FileOutputStream("e:\\4.txt");
  20.                         byte[] by=new byte[1024];
  21.                         int len=0;
  22.                         try {
  23.                                 while((len=sis.read(by))!=-1){
  24.                                          out.write(by,0,len);
  25.                                 }
  26.                         } catch (IOException e) {
  27.                                 // TODO Auto-generated catch block
  28.                                 e.printStackTrace();
  29.                         }
  30.                         try {
  31.                                 out.close();
  32.                         } catch (IOException e) {
  33.                                 // TODO Auto-generated catch block
  34.                                 e.printStackTrace();
  35.                         }
  36.                         try {
  37.                                 sis.close();
  38.                         } catch (IOException e) {
  39.                                 // TODO Auto-generated catch block
  40.                                 e.printStackTrace();
  41.                         }
  42.                 } catch (FileNotFoundException e) {
  43.                         // TODO Auto-generated catch block
  44.                         e.printStackTrace();
  45.                 }
  46.                
  47.         }
  48.        
  49. }
复制代码

0 个回复

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