Class ByteStreams
- Since:
- 1.0
- Author:
- Chris Nokleberg, Colin Decker
- 
Method SummaryModifier and TypeMethodDescriptionstatic longcopy(InputStream from, OutputStream to) Copies all bytes from the input stream to the output stream.static longcopy(ReadableByteChannel from, WritableByteChannel to) Copies all bytes from the readable channel to the writable channel.static longexhaust(InputStream in) Reads and discards data from the givenInputStreamuntil the end of the stream is reached.static InputStreamlimit(InputStream in, long limit) Wraps aInputStream, limiting the number of bytes which can be read.static ByteArrayDataInputnewDataInput(byte[] bytes) Returns a newByteArrayDataInputinstance to read from thebytesarray from the beginning.static ByteArrayDataInputnewDataInput(byte[] bytes, int start) Returns a newByteArrayDataInputinstance to read from thebytesarray, starting at the given position.static ByteArrayDataInputnewDataInput(ByteArrayInputStream byteArrayInputStream) Returns a newByteArrayDataInputinstance to read from the givenByteArrayInputStream.static ByteArrayDataOutputReturns a newByteArrayDataOutputinstance with a default size.static ByteArrayDataOutputnewDataOutput(int size) Returns a newByteArrayDataOutputinstance sized to holdsizebytes before resizing.static ByteArrayDataOutputnewDataOutput(ByteArrayOutputStream byteArrayOutputStream) Returns a newByteArrayDataOutputinstance which writes to the givenByteArrayOutputStream.static OutputStreamReturns anOutputStreamthat simply discards written bytes.static intread(InputStream in, byte[] b, int off, int len) Reads some bytes from an input stream and stores them into the buffer arrayb.readBytes(InputStream input, ByteProcessor<T> processor) Process the bytes of the given input stream using the given processor.static voidreadFully(InputStream in, byte[] b) Attempts to read enough bytes from the stream to fill the given byte array, with the same behavior asDataInput.readFully(byte[]).static voidreadFully(InputStream in, byte[] b, int off, int len) Attempts to readlenbytes from the stream into the given array starting atoff, with the same behavior asDataInput.readFully(byte[], int, int).static voidskipFully(InputStream in, long n) Discardsnbytes of data from the input stream.static byte[]Reads all bytes from an input stream into a byte array.
- 
Method Details- 
copyCopies all bytes from the input stream to the output stream. Does not close or flush either stream.Java 9 users and later: this method should be treated as deprecated; use the equivalent InputStream.transferTo(java.io.OutputStream)method instead.- Parameters:
- from- the input stream to read from
- to- the output stream to write to
- Returns:
- the number of bytes copied
- Throws:
- IOException- if an I/O error occurs
 
- 
copy@CanIgnoreReturnValue public static long copy(ReadableByteChannel from, WritableByteChannel to) throws IOException Copies all bytes from the readable channel to the writable channel. Does not close or flush either channel.- Parameters:
- from- the readable channel to read from
- to- the writable channel to write to
- Returns:
- the number of bytes copied
- Throws:
- IOException- if an I/O error occurs
 
- 
toByteArrayReads all bytes from an input stream into a byte array. Does not close the stream.Java 9+ users: use in#readAllBytes()instead.- Parameters:
- in- the input stream to read from
- Returns:
- a byte array containing all the bytes from the stream
- Throws:
- IOException- if an I/O error occurs
 
- 
exhaustReads and discards data from the givenInputStreamuntil the end of the stream is reached. Returns the total number of bytes read. Does not close the stream.- Throws:
- IOException
- Since:
- 20.0
 
- 
newDataInputReturns a newByteArrayDataInputinstance to read from thebytesarray from the beginning.
- 
newDataInputReturns a newByteArrayDataInputinstance to read from thebytesarray, starting at the given position.- Throws:
- IndexOutOfBoundsException- if- startis negative or greater than the length of the array
 
- 
newDataInputReturns a newByteArrayDataInputinstance to read from the givenByteArrayInputStream. The given input stream is not reset before being read from by the returnedByteArrayDataInput.- Since:
- 17.0
 
- 
newDataOutputReturns a newByteArrayDataOutputinstance with a default size.
- 
newDataOutputReturns a newByteArrayDataOutputinstance sized to holdsizebytes before resizing.- Throws:
- IllegalArgumentException- if- sizeis negative
 
- 
newDataOutputReturns a newByteArrayDataOutputinstance which writes to the givenByteArrayOutputStream. The given output stream is not reset before being written to by the returnedByteArrayDataOutputand new data will be appended to any existing content.Note that if the given output stream was not empty or is modified after the ByteArrayDataOutputis created, the contract forByteArrayDataOutput.toByteArray()will not be honored (the bytes returned in the byte array may not be exactly what was written via calls toByteArrayDataOutput).- Since:
- 17.0
 
- 
nullOutputStreamReturns anOutputStreamthat simply discards written bytes.Java 11+ users: use OutputStream.nullOutputStream()instead. Note that theByteStreamsmethod returns a singleton stream whoseclosemethod has no effect, while theOutputStreammethod returns a new instance whosewritemethods throw if called on a closed stream.- Since:
- 14.0 (since 1.0 as com.google.common.io.NullOutputStream)
 
- 
limitWraps aInputStream, limiting the number of bytes which can be read.- Parameters:
- in- the input stream to be wrapped
- limit- the maximum number of bytes to be read
- Returns:
- a length-limited InputStream
- Since:
- 14.0 (since 1.0 as com.google.common.io.LimitInputStream)
 
- 
readFullyAttempts to read enough bytes from the stream to fill the given byte array, with the same behavior asDataInput.readFully(byte[]). Does not close the stream.- Parameters:
- in- the input stream to read from.
- b- the buffer into which the data is read.
- Throws:
- EOFException- if this stream reaches the end before reading all the bytes.
- IOException- if an I/O error occurs.
 
- 
readFullyAttempts to readlenbytes from the stream into the given array starting atoff, with the same behavior asDataInput.readFully(byte[], int, int). Does not close the stream.- Parameters:
- in- the input stream to read from.
- b- the buffer into which the data is read.
- off- an int specifying the offset into the data.
- len- an int specifying the number of bytes to read.
- Throws:
- EOFException- if this stream reaches the end before reading all the bytes.
- IOException- if an I/O error occurs.
 
- 
skipFullyDiscardsnbytes of data from the input stream. This method will block until the full amount has been skipped. Does not close the stream.- Parameters:
- in- the input stream to read from
- n- the number of bytes to skip
- Throws:
- EOFException- if this stream reaches the end before skipping all the bytes
- IOException- if an I/O error occurs, or the stream does not support skipping
 
- 
readBytes@CanIgnoreReturnValue public static <T extends @Nullable Object> T readBytes(InputStream input, ByteProcessor<T> processor) throws IOException Process the bytes of the given input stream using the given processor.- Parameters:
- input- the input stream to process
- processor- the object to which to pass the bytes of the stream
- Returns:
- the result of the byte processor
- Throws:
- IOException- if an I/O error occurs
- Since:
- 14.0
 
- 
read@CanIgnoreReturnValue public static int read(InputStream in, byte[] b, int off, int len) throws IOException Reads some bytes from an input stream and stores them into the buffer arrayb. This method blocks untillenbytes of input data have been read into the array, or end of file is detected. The number of bytes read is returned, possibly zero. Does not close the stream.A caller can detect EOF if the number of bytes read is less than len. All subsequent calls on the same stream will return zero.If bis null, aNullPointerExceptionis thrown. Ifoffis negative, orlenis negative, oroff+lenis greater than the length of the arrayb, then anIndexOutOfBoundsExceptionis thrown. Iflenis zero, then no bytes are read. Otherwise, the first byte read is stored into elementb[off], the next one intob[off+1], and so on. The number of bytes read is, at most, equal tolen.- Parameters:
- in- the input stream to read from
- b- the buffer into which the data is read
- off- an int specifying the offset into the data
- len- an int specifying the number of bytes to read
- Returns:
- the number of bytes read
- Throws:
- IOException- if an I/O error occurs
- IndexOutOfBoundsException- if- offis negative, if- lenis negative, or if- off + lenis greater than- b.length
 
 
-