SequenceInputStream in Java - BunksAllowed

BunksAllowed is an effort to facilitate Self Learning process through the provision of quality tutorials.

Community

demo-image

SequenceInputStream in Java

Share This

Source code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.t4b.test;
import java.io.FileInputStream;
import java.io.SequenceInputStream;
public class SequenceInputStreamTest {
public static void main(String[] args) {
try {
FileInputStream fileInputStream1 = new FileInputStream("testin.txt");
FileInputStream fileInputStream2 = new FileInputStream("testout.txt");
SequenceInputStream inst = new SequenceInputStream(fileInputStream1, fileInputStream2);
int j;
while ((j = inst.read()) != -1) {
System.out.print((char) j);
}
inst.close();
fileInputStream1.close();
fileInputStream2.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Happy Exploring!

Comment Using!!

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.