? InfiniteCircularInputStream
java.lang.Object
java.io.InputStream
org.apache.commons.io.input.CircularInputStream
org.apache.commons.io.input.InfiniteCircularInputStream
- ????????:
Closeable
,AutoCloseable
An
InputStream
that infinitely repeats the provided bytes.
Closing this input stream has no effect. The methods in this class can be called after the stream has been closed
without generating an IOException
.
- ???????:
- 2.6
-
?????
????????InfiniteCircularInputStream
(byte[] repeatContent) Creates an instance from the specified array of bytes. -
????
??????? org.apache.commons.io.input.CircularInputStream
read
??????? java.io.InputStream
available, close, mark, markSupported, nullInputStream, read, read, readAllBytes, readNBytes, readNBytes, reset, skip, skipNBytes, transferTo
-
???????
-
InfiniteCircularInputStream
Creates an instance from the specified array of bytes.- ??:
repeatContent
- Input buffer to be repeated this buffer is not copied.
-