The close() method of Writer Class in Java is used to close the writer. Closing a writer deallocates any value in it or any resources associated with it. The Writer instance once closed won’t work. Also a Writer instance once closed cannot be closed again.
Syntax:
public void close()
Parameters: This method do not accepts any parameter.
Return Value: This method do not returns any value. It just closes the Stream.
Below methods illustrates the working of close() method:
Program 1:
import java.io.*;
class GFG {
public static void main(String[] args)
{
String str = "GeeksForGeeks" ;
try {
Writer writer
= new PrintWriter(System.out);
writer.write(str);
writer.close();
}
catch (Exception e) {
System.out.println(e);
}
}
}
|
Program 2:
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
Writer writer
= new PrintWriter(System.out);
writer.write( 65 );
writer.close();
}
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!