I want to create an InputStream that is limited to a certain range of bytes in file, e.g. to bytes from position 0 to 100. So that the client code should see EOF once 100th byte is reached.
|
The You will also need to ensure that the other methods for reading I don't know what your use case is, but as a bonus you may want to implement buffering as well. |
|||||||
|
|
As danben says, just decorate your stream and enforce the constraint:
|
|||
|
|
|
If you only need 100 bytes, then simple is probably best, I'd read them into an array and wrap that as a ByteArrayInputStream. E.g.
If you don't want to use If you have more advanced needs, such as reading from a segment in the middle of the file, or larger amounts of data, then extending InputStream and overriding the read(byte[], int,int) as well as read(), will give you better performance than just overriding the read() method. |
|||
|
|
|
Consider using http://guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/common/io/LimitInputStream.html |
|||
|
|