Apache Commons IO-TeeInputStream
프록시 스트림에서 읽은 모든 바이트의 복사본을 지정된 OutputStream에 투명하게 쓰는 InputStream 프록시입니다. 이 프록시의 close () 메서드가 호출되면 프록시 입력 스트림이 닫힙니다. 한 번에 두 개의 스트림을 집합 적으로 작동하는 데 사용할 수 있습니다.
클래스 선언
다음은에 대한 선언입니다. org.apache.commons.io.input.TeeInputStream 클래스-
public class TeeInputStream
extends ProxyInputStream
TeeInputStream 클래스의 예
이 예제에서 TeeInputStream을 닫으면 TeeInputStream과 TeeOutputStream 오브젝트가 닫힙니다.
IOTester.java
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import org.apache.commons.io.input.TeeInputStream;
import org.apache.commons.io.output.TeeOutputStream;
public class IOTester {
private static final String SAMPLE = "Welcome to TutorialsPoint. Simply Easy
Learning.";
public static void main(String[] args) {
try {
usingTeeInputStream();
}catch(IOException e) {
System.out.println(e.getMessage());
}
}
public static void usingTeeInputStream() throws IOException {
TeeInputStream teeInputStream = null;
TeeOutputStream teeOutputStream = null;
try {
ByteArrayInputStream inputStream = new
ByteArrayInputStream(SAMPLE.getBytes("US-ASCII"));
ByteArrayOutputStream outputStream1 = new ByteArrayOutputStream();
ByteArrayOutputStream outputStream2 = new ByteArrayOutputStream();
teeOutputStream = new TeeOutputStream(outputStream1, outputStream2);
teeInputStream = new TeeInputStream(inputStream, teeOutputStream, true);
teeInputStream.read(new byte[SAMPLE.length()]);
System.out.println("Output stream 1: " + outputStream1.toString());
System.out.println("Output stream 2: " + outputStream2.toString());
}catch (IOException e) {
System.out.println(e.getMessage());
} finally {
//teeIn.close() closes teeIn and teeOut which in turn closes the out1 and out2.
try {
teeInputStream.close();
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
}
}
산출
다음 결과를 인쇄합니다.
Output stream 1: Welcome to TutorialsPoint. Simply Easy Learning.
Output stream 2: Welcome to TutorialsPoint. Simply Easy Learning.