VOOZH about

URL: https://www.geeksforgeeks.org/java/writer-close-method-in-java-with-examples/

⇱ Writer close() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Writer close() method in Java with Examples

Last Updated : 11 Jul, 2025
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:
Output:
GeeksForGeeks
Program 2:
Output:
A
Comment