Hello, I recently started using the FileUtils class of Commons IO, and had a quick look into the source code.
The method "FileUtils.writeByteArrayToFile(...)" internally uses the private method "openOutputStream(...)", which creates (after some smart checks) an FileOutputStream. But, shouldn't "writeByteArrayToFile(...)" or "openOutputStream(...)" not use/create a BufferedOutputStream, wrapping the FileOutputStream? Or do I overlook something? I think one should always buffer the bytes when writing to a file... Any thoughts? Thanks ! --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
