Tagged Questions
The closeable tag has no wiki summary.
6
votes
1answer
952 views
Should Closeable be used as the Java equivalent for .NET's IDisposable?
The Closeable interface introduced in Java 1.5 is tightly tied to streams, and even has an exception specifier for IOException. This suggests that it should only be used for streams or other IO ...
5
votes
7answers
438 views
Java: What sense could it make not to close an InputStream after it ended?
InputStream implements Closeable.
I understand, that closing an InputStream which not ended yet, could make sense to free some underlying resources, and, leaving it open, could make sense to let ...
2
votes
4answers
83 views
Closable in garbage collection?
is the close() method of Closable interface gets called while the Closable object is garbage collected ? [in java 6.0]
I have a static variable which is a resource(database connection). Since this is ...
2
votes
4answers
372 views
Java resource management: please help to understand Findbugs results
Findbugs bugs me about a method which opens two Closeable instances, but I can't understand why.
Source
public static void sourceXmlToBeautifiedXml(File input, File output)
throws ...
0
votes
1answer
100 views
Implementing a Closeable Socket/Serversocket
To minimize boilerplate code, I'd like to have a Socket and ServerSocket class which both implement the Closeable interface.
I've seen that in Java 7, Socket and ServerSocket are likely to implement ...