In the following code:
DataInputStream in = new DataInputStream(
new BufferedInputStream(new FileInputStream(file)));
in.close();
do I need to close the 2 other stream in addition to closing the "top level" stream ?
Manu
|
|
|
if you look the source of |
|||||||||||
|
|
I will use this opportunity to answer with an answer I have already made before. By using Project Lombok you can let Lombok correctly close the streams for you. Details can be found here. |
|||
|
|
|
Karazi, is right in suggesting that. Further, just to get an idea and a little more insight, Java IO API is actually implemented using decorator pattern. You can check out decorator pattern on wiki. |
|||
|
|
|
I'd stick the close in a finally block just to make sure it is flushed properly in case of an exception.
|
|||||||
|