Try-with-Resources in Java 7
The try-with-resources statement is a try statement that declares one or more resources within try statement. A resource(s) is an object that must be closed after the program is finished with it. The try-with-resources...