Class DataSourceUtil
- java.lang.Object
-
- com.google.android.exoplayer2.upstream.DataSourceUtil
-
public final class DataSourceUtil extends Object
Utility methods forDataSource
.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
closeQuietly(DataSource dataSource)
Closes aDataSource
, suppressing anyIOException
that may occur.static byte[]
readExactly(DataSource dataSource, int length)
Readslength
bytes from the specified openedDataSource
, and returns a byte array containing the read data.static byte[]
readToEnd(DataSource dataSource)
Reads data from the specified openedDataSource
until it ends, and returns a byte array containing the read data.
-
-
-
Method Detail
-
readToEnd
public static byte[] readToEnd(DataSource dataSource) throws IOException
Reads data from the specified openedDataSource
until it ends, and returns a byte array containing the read data.- Parameters:
dataSource
- The source from which to read.- Returns:
- The concatenation of all read data.
- Throws:
IOException
- If an error occurs reading from the source.
-
readExactly
public static byte[] readExactly(DataSource dataSource, int length) throws IOException
Readslength
bytes from the specified openedDataSource
, and returns a byte array containing the read data.- Parameters:
dataSource
- The source from which to read.- Returns:
- The read data.
- Throws:
IOException
- If an error occurs reading from the source.IllegalStateException
- If the end of the source was reached beforelength
bytes could be read.
-
closeQuietly
public static void closeQuietly(@Nullable DataSource dataSource)
Closes aDataSource
, suppressing anyIOException
that may occur.- Parameters:
dataSource
- TheDataSource
to close.
-
-