just think that when I opened my file then when I want to write something in it ,one Exception will be thrown,and if I used file.close() in the try block ,So because of that Exception will not work, where should I close my file???
|
|
The proper way to do so is:
|
||||
|
|
|
The general pattern for resources is
|
|||
|
|
|
You should use a finally block. However close method can also throw an IOException, so you should surround it in a try-catch block too. This link may be helpful. |
|||
|
|
use a finally block:
|
|||
|
|
|
I use two try catch blocks. One where I open the file + a bool to let me know that the file was opened successfully. The second one where I write something (after checking the bool if open was a success).
|
|||
|
|
|
The answer of David Rabinowitz is right, but it can get simpler with the use of Apache Commons IO. For the complicated try-block in the finally-clause it has a method, for closing any Stream without an exception. With this you can write this:
|
|||||
|
|