码迷,mamicode.com
首页 > 编程语言 > 详细

Java核心类库-IO-合并流

时间:2017-05-23 21:43:01      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:close   amd   合并   class   创建   byte   输入流   输入   throws   

合并流/顺序流(sequenceInputStream):

就是把多个输入流,合并成一个流对象。

 1 public class SequenceInputStreamDemo {
 2     public static void main(String[] args) throws Exception {
 3         //创建顺序流对象
 4         SequenceInputStream in = new SequenceInputStream(new FileInputStream("stream.txt"),
 5                 new FileInputStream("stream2.txt"));
 6 
 7         byte[] buffer = new byte[1024];
 8         int len = -1;
 9         while ((len = in.read(buffer)) != -1){
10             System.out.println(new String(buffer,0,len));
11         }
12         in.close();
13     }
14 }

 

Java核心类库-IO-合并流

标签:close   amd   合并   class   创建   byte   输入流   输入   throws   

原文地址:http://www.cnblogs.com/wenxudong/p/6896016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!