inputStream

inline fun File.inputStream(): FileInputStream

Constructs a new FileInputStream of this file and returns it as a result.


inline fun ByteArray.inputStream(): ByteArrayInputStream

Creates an input stream for reading data from this byte array.


inline fun ByteArray.inputStream(offset: Int, length: Int): ByteArrayInputStream

Creates an input stream for reading data from the specified portion of this byte array.

Parameters

offset

the start offset of the portion of the array to read.

length

the length of the portion of the array to read.