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:
Program 2: