I need to know what is exact difference between flush and close function in Java?
And When the data is dumped into a file during writing of file?
Please provide one example
Thanks
|
|
|
flush() writes the content of the buffer to the destination and makes the buffer empty for further data to store but it does not closes the stream permanently. That means you can still write some more data to the stream. But close() closes the stream permanently. If you want to write some data further, then you have to reopen the stream again and append the data with the existing ones. |
|||
|
|
|
Note that without calls to
|
|||
|
|
|
|
|||
|
|
|
flush() :To flush output stream, use void flush() method of DataOutputStream class.This method internally calls flush method of underlying OutputStream class which forces any buffered output bytes to be written in the stream. close() :It generally close the Stream,connection,socket. [flush and close example] |
|||||
|