commons-io does not have another method for the task you describe. At present I would say that commons-io would recommend that in truly performance/scalability critical tasks it would be adbisable to code your own io code for this kind of task.
Stephen ----- Original Message ----- From: "Robert Taylor" <[EMAIL PROTECTED]> > Greetings, I would like to use CopyUtils.copy(InputStream is, OutpuStream os) to manually > server (read from input stream and write to output stream) up large binary files to web clients (browsers). > > After reading the documentation which indicates it does not flush the buffer in the method, > I'm concerned that this would result in OutOfMemoryErrors under large loads. > > I was under the assumption that it would be prudent to flush the buffer after a certain number > of reads to reduce the amount of resident memory used. > > Is there a another utility to perform such a common task? > > robert > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
