Writing to multiple files in one go with Java

In this short guide you are going to see how to write to multiple files at-once in Java. The technique you will see here will allow you to write the same data to multiple output streams in one go, which will keep your code shorter, readable and safer from errors that can come through copy-and-pasting. The rationale First of all, why would you want to write to multiple output streams at once? [Read More]