import java.io.*;
import java.util.*;
/*帮3个文件中的数据写到一个合到一个文件中
* */
public class SequenceDemo
{
public static void main(String[] args)throws IOException
{
Vector<FileInputStream> v=new Vector<FileInputStream>();
v.add(new FileInputStream("1.txt"));
v.add(new FileInputStream("2.txt"));
v.add(new FileInputStream("3.txt"));
Enumeration<FileInputStream> e=v.elements();
SequenceInputStream sis=new SequenceInputStream(e);
FileOutputStream fos=new FileOutputStream("4.txt");
byte[] b=new byte[1024]; //为何有的里面需要定义数组有的不需要?是不是通过
int len=0; //缓冲区的就不需要定义数组?
while((len=sis.read())!=-1)
{
fos.write(b,0,len);// 如果没换行,合并一起也没换行 如何解决?
}
fos.close();
sis.close();
}
}
|
|