1 | File file; /* defines file to be object of class File */ |
2 |
try{
|
3 | } catch (IOException e) { |
4 | /* This catches ALL I/O errors including read and write stuff */ |
5 | /* After Handling Some How */ |
6 | return; /* but the finally clause will be executed whether or not code terminates normally */ |
7 | } /* We must close file whatever happens */ |
8 |
finally {
|
9 | } |