I was wondering, whether is there any need for me to close the InputStream, after I close the reader?
try {
inputStream = new java.io.FileInputStream(file);
reader = new InputStreamReader(inputStream, Charset.forName("UTF-8"));
}
catch (Exception exp) {
log.error(null, exp);
}
finally {
if (false == close(reader)) {
return null;
}
// Do I need to close inputStream as well?
if (false == close(inputStream)) {
return null;
}
}
if (!close(reader)and notif (false == close(reader))– Jacob Tomaw Sep 2 '10 at 16:04if (!check) { thing(); return; } otherthing();toif (check) { otherthing() } else { thing(); }. – Tom Hawtin - tackline Sep 2 '10 at 16:29returninfinally? Arghhhhhhhhhhhhhhhh!!! – Tom Hawtin - tackline Sep 2 '10 at 16:30