The flush() method of PrintWriter Class in Java is used to flush the stream. By flushing the stream, it means to clear the stream of any element that may be or maybe not inside the stream. It neither accepts any parameter nor returns any value.
Syntax:
public void flush()
Parameters: This method do not accepts any parameter.
Return Value: This method do not returns any value. It just flushes the Stream.
Below methods illustrates the working of flush() method:
Program 1:
import java.io.*;
class GFG {
public static void main(String[] args)
{
String str = "GeeksForGeeks" ;
try {
PrintWriter writer
= new PrintWriter(System.out);
writer.write(str);
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
|
Program 2:
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
PrintWriter writer
= new PrintWriter(System.out);
writer.write( 65 );
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
|
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
29 Jan, 2019
Like Article
Save Article