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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© hero_king 中级黑马   /  2016-6-1 22:06  /  350 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. import java.io.BufferedOutputStream;
  2. import java.io.FileInputStream;
  3. import java.io.FileOutputStream;
  4. import java.io.IOException;
  5. import java.io.SequenceInputStream;

  6. /*
  7. * 合并流案例1
  8. * 将两个文件的内容复制到一个文件中
  9. */

  10. public class Demo5 {
  11.         public static void main(String[] args) throws IOException {

  12.                 SequenceInputStream sis = new SequenceInputStream(new FileInputStream(
  13.                                 "F:\\path变量备份.txt"), new FileInputStream("F:\\path变量备份.txt"));
  14.                 BufferedOutputStream bos = new BufferedOutputStream(
  15.                                 new FileOutputStream("合并后.txt"));
  16.                 byte[] bys = new byte[1024];
  17.                 int len = 0;
  18.                 while ((len = sis.read(bys)) != -1) {
  19.                         bos.write(bys, 0, len);
  20.                 }
  21.                 sis.close();
  22.                 bos.close();
  23.                
  24.         }
  25. }
复制代码
实现两个文件夹的内容合并后写入到一个文件夹中。

0 个回复

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