I have read that file is an unmanaged resource and won't be taken care of by garbage collector.
If you don't close a file, I am sure the reference to the file would be garbage collected if there is nothing referencing it. So what exactly stays open? Is it something at the operating system level? Like for SQL connections I know the OS keeps the TCP port open and you may eventually run out of ports. But what is it that is left open in case of a file?
The garbage collector may release OS resources eventually, thanks to the
finalize()
method in classes that wrap the resources. However, releasing the OS resources at some point in the future is not good enough.There are two problems in particular:
For example, Debian Linux has a default open file limit of 1024 to prevent a misbehaving program from DoS'ing itself. Consider this program that optimally should only use a single FD per iteration:
Here's what happens when you run it:
If you had closed the file manually, this would not happen.
Here's another example of a program that writes a string to file, and then reads it back:
Here's what you get:
The written string didn't make it to the file. If you had closed the BufferedWriter, this would not be a problem.