Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Java, flush() method is using in streams. But I dont understand what are all the purpose of using this method?

fin.flush();

tell me some suggestions.

share|improve this question

3 Answers

up vote 4 down vote accepted

From the docs:

The flush method flushes the output stream and forces any buffered output bytes to be written out. The general contract of flush is that calling it is an indication that, if any bytes previously written have been buffered by the implementation of the output stream, such bytes should immediately be written to their intended destination.

The buffering is mainly done to improve the I/O performance. More on this can be read from this article: Tuning Java I/O Performance

share|improve this answer
Fresh link to Tuning Java I/O Performance oracle.com/technetwork/articles/javase/perftuning-137844.html – Oleksandr Jun 6 at 11:39

Streams are often accessed by threads that periodically empty their content and, for example, display it on the screen, send it to a socket or write it to a file. This is done for performance reasons. Flushing an output stream means that you want to stop, wait for the content of the stream to be completely transferred to its destination, and then resume execution with the stream empty and the content sent.

share|improve this answer

When you write data to a stream, some buffering happens. You can't be sure when the entire data you have written will actually be sent. We do call the close() on the file/buffered writers at the end.

So in order to be sure that before we call the close(), all the data you have written actually gets out to the file, we call the flush() just before the close().

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.