If I just call close() in a output stream, the output is guaranteed, or need I call flush() always?
|
|
|
Whilst Firstly, decorators (such as
To top it, decorator Of course, you probably want to use the Execute Around idiom to keep in DRY(ish). |
|||
|
|
|
Streams represent resources which you must always clean up explicitly, by calling the close method. Some java.io classes (apparently just the output classes) include a flush method. When a close method is called on a such a class, it automatically performs a flush. There is no need to explicitly call flush before calling close. |
|||||||
|
