Should I buffered streams when using commons io myself, like 

CopyUtils.copy(new BufferedInputStream(new FileInputStream(file)), new
BufferedOutputStream(res.getOutputStream()));

instead of
        CopyUtils.copy(new FileInputStream(file)), res.getOutputStream());

Or CopyUtil, IOUtil proper probably inside the API?

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to