While working on a school project, I wrote the following code:
FileOutputStream fos;
ObjectOutputStream oos;
try {
fos = new FileOutputStream(file);
oos = new ObjectOutputStream(fos);
oos.writeObject(shapes);
} catch (FileNotFoundException ex) {
// complain to user
} catch (IOException ex) {
// notify user
} finally {
if (oos != null) oos.close();
if (fos != null) fos.close();
}
The problem is that Netbeans is telling me the resource.close() lines throw an IOException and therefore must either be caught or declared. It also is complaining that oos and fos might not yet be initialized (despite the null checks).
This seems a little strange, seeing as how the whole point is to stop the IOException right there.
My knee-jerk fix is to do this:
} finally {
try {
if (oos != null) oos.close();
if (fos != null) fos.close();
} catch (IOException ex) { }
}
But deep down this bothers me and feels dirty.
I come from a C# background, where I would simply take advantage of a using block, so I am unsure of what the "right" way is to handle this.
What is the right way to handle this problem?
foswhenoos.close()throwsIOException. Each needs to go in its own try-catch.if (oos != null) try { oos.close() } catch (IOException logOrIgnore) {}and so on. – BalusC Nov 4 '10 at 0:57using, but any exceptions thrown from the Dispose method on the IDisposable would just bubble up, so the equivalent Java would be to throw a RuntimeException on the catch of the close statement. But I don't know if the .NET system libraries swallow such exceptions by default or not. – Yishai Nov 4 '10 at 1:53