[ Web Proxy ]
URL:
Viewing: https://docs.oracle.com/en/java/javase/24/docs/api/java.base/java/io/SequenceInputStream.html [Back]  [Original]

SequenceInputStream (Java SE 24 & JDK 24)
Contents 
Hide sidebar ❮❯ Show sidebar
  1. Description
  2. Constructor Summary
  3. Method Summary
  4. Constructor Details
    1. SequenceInputStream(Enumeration)
    2. SequenceInputStream(InputStream, InputStream)
  5. Method Details
    1. available()
    2. read()
    3. read(byte[], int, int)
    4. close()

Class SequenceInputStream

java.lang.Object
java.io.InputStream
java.io.SequenceInputStream
All Implemented Interfaces:
Closeable, AutoCloseable

public class SequenceInputStream extends InputStream
A SequenceInputStream represents the logical concatenation of other input streams. It starts out with an ordered collection of input streams and reads from the first one until end of file is reached, whereupon it reads from the second one, and so on, until end of file is reached on the last of the contained input streams.
Since:
1.0


Web Proxy Viewer  |  New URL  |  Original Page