Posted By:
Christopher_Koenigsberg
Posted On:
Saturday, November 4, 2006 06:51 PM
You created a BufferedWriter. That means when you write, it goes through a buffer, and if you write one bufferful or less of data, it doesn't actually make it out to the file, until the buffer is flushed.
When you closed the writers, that flushed the buffer for you.