Has anyone ever seen an exception thrown when calling close method on any closable object?
|
An
I have certainly seen some of these. Others are unlikely. However, if the data you are writing is important then you should allow for |
|||||
|
|
Yes, it's not that rare, IMHO if you are working with anything other than non-local disk files. Close() works if at that point your closable is still valid and open. Many things like pipes, remote files, etc., can die prematurely. In addition, I have seen code that ignores errors on open and write and still tries to close (e.g., in a finally block). |
|||
|
|
|
I haven't, but it's possible. Imagine if there's an |
|||
|
|
|
Not in terms of file-io, but in terms of sockets the close will raise |
|||
|
|
|
Old post and long since answered but here's a real example: The following code will except out when bufferedWriter.close() is called. This happens because the BufferedWriter's underlying Writer (the FileWriter) has already been closed and when a BufferedWriter closes, it first attempts to flush any data in its buffer to its underlying Writer.
Note: If there's no data in the buffer [comment out the write() line or add a flush() call] then no exception will be generated |
||||
|
|
|
I guess you could try to force this by unplugging the disk your file is on. But on any |
|||
|
|
|
Try yanking a USB drive with an open file on it. If it doesn't give an exception I'd be pretty surprised. |
|||
|
|

