@Deque:
Seems to me that you are coding in Java, but not well enough to "remember" that you must write try-finally statement with exception catching, else it will give you errors and won't compile.
You should try it out, before you claim I am not right. You don't need a finally if you have a catch.
The catch should at least print the stackstrace. Another possibility is to throw the error by putting throws FileNotFoundException to your method declaration. Then you don't even need a try-catch and it is still better than having an empty catch-block.
Can't get rid of some habits (if you can call them like that...) from Python and Delphi, like variable naming. Who said that Java MUST have variable names starting with first lowercase letter. Doesn't matter to the compiler or the code flow so why bother?
The Java code conventions say that.
You don't need to bother as long as you are coding for yourself. But it is important if you publish your code. A lot of the conventions are there to prevent you from making errors, not only for readability. But readability is very important too, especially if others have to deal with your code, don't underestimate it.