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