HELP: Creating an InputStream from bytes?
I am currently retrieving a file from a zip file pretty much the same way as this example:
http://www.exampledepot.com/egs/java.util.zip/GetZip.html
I then create a FileInputStream from the file I wrote to disk to use for other processing. I want to get rid of the step of writing to disk and just create an InputStream. Is this possible? If so, can you provide an example?
Thanks!
Michael

