David Smiley wrote:
I developed some nifty code that takes an OutputStream and sort of reverses it as if it were an InputStream. Error passing and handling close is dealt with. It needs another thread to do the work which runs in parallel. It uses Piped streams. I created this because I had to conform GZIPOutputStream to my framework which demanded an InputStream. The code works.
Sounds good so far. I have a feeling that someone else suggested such a thing too.
> My code uses JDK 1.5 to take advantage
of the nice ExecutorService interface.
Ah. Unfortunately, commons-io is JDK1.2 compliant (like most commons jars).
Can my addition be added?
Possibly, if rewritten without the JDK 1.5 dependency. Can't promise though, and my time is very limited at present.
Stephen --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
