Java Writer.close()

Syntax

Writer.close() has the following syntax.

public abstract void close()   throws IOException

Example

In the following code shows how to use Writer.close() method.


// www  .  j a  v a  2 s .c o  m

import java.io.*;

public class Main {

   public static void main(String[] args) {
      String s = "from java2s.com";

      
      Writer writer = new PrintWriter(System.out);

      try {
         // append a string
         writer.append(s);

         // flush the writer
         writer.flush();

         // append a new string
         writer.append("\nThis is an example");

         // flush and close the stream
         writer.close();

      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

The code above generates the following result.