I would like to know how to make a deep copy of an InputStream.
I know that it can be done with IOUtils packages, but I would like to avoid them if possible. Does anyone know an alternate way?
|
I would like to know how to make a deep copy of an I know that it can be done with IOUtils packages, but I would like to avoid them if possible. Does anyone know an alternate way? |
|||||||||||||||||
|
|
InputStream is abstract and does not expose (neither do its children) internal data objects. So the only way to "deep copy" the InputStream is to create ByteArrayOutputStream and after doing read() on InputStream, write() this data to ByteArrayOutputStream. Then do:
If you are using To "reuse" your InputStream avoid using mark() and then at the end of reading call reset(). You will be then reading from beginning of the stream. Edited: BTW, IOUtils uses this simple code snippet to copy InputStream:
Read more: http://kickjava.com/src/org/apache/commons/io/CopyUtils.java.htm#ixzz13ymaCX9m |
||||
|
|