Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you read the same inputstream twice? Is it possible to copy it somehow?

I need to get a image from web, save it locally and then return the saved image. I just tought it would be faster to use the same stream instead of starting a new stream to the downloaded content and then read it again.

share|improve this question
Maybe use mark and reset – Vyacheslav Shilkin Feb 29 '12 at 14:54

4 Answers

up vote 5 down vote accepted

You can use org.apache.commons.io.IOUtils.copy. to copy the contents of the InputStream to a byte array, and then repeatedly read from the byte array using a ByteArrayInputStream. E.g.:

ByteArrayOutputStream baos = new ByteArrayOutputStream();
org.apache.commons.io.IOUtils.copy(in, baos);
byte[] bytes = baos.toByteArray();

// either
while (needToReadAgain) {
    ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
    read(bais);
}

// or
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
while (needToReadAgain) {
    bais.reset();
    read(bais);
}
share|improve this answer
I think this is the only valid solution as mark isn't supported for all types. – Warpzit Mar 1 '12 at 11:10
@Paul Grime: IOUtils.toByeArray internally calls copy method from inside as well. – Ankit Apr 17 '12 at 9:13

Depending on where the InputStream is coming from, you might not be able to reset it. You can check if mark() and reset() are supported using markSupported().

If it is, you can call reset() on the InputStream to return to the beginning. If not, you need to read the InputStream from the source again.

share|improve this answer

If you are using an implemenation of interface InputStream, you can check the return of InputStream#markSupported() can tell you whether or not you can use the method mark() / reset(). If you can mark the stream when you read, then call reset() to go back to begin.

share|improve this answer

Convert inputstream into bytes and then pass it to savefile function where you assemble the same into inputstream. Also in original function use bytes to use for other tasks

share|improve this answer
I say bad idea on this one, the resulting array could be huge and will rob the device of memory. – Kevin Mar 9 '12 at 20:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.