Java.io.CharArrayWriter.flush() Method



Description

The java.io.CharArrayWriter.flush() method flushes the stream to the underlying stream.

Declaration

Following is the declaration for java.io.CharArrayWriter.flush() method −

public void flush()

Parameters

NA

Return Value

The method does not return any value.

Exception

NA

Example

The following example shows the usage of java.io.CharArrayWriter.flush() method.

package com.tutorialspoint;

import java.io.CharArrayWriter;

public class CharArrayWriterDemo {
   public static void main(String[] args) {      
      CharArrayWriter chw = null;
      
      try {
         // create character array writer
         chw = new CharArrayWriter();
         
         // declare character sequence
         CharSequence csq = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
         
         // append character sequence to the writer
         chw.append(csq);
         
         // flush
         chw.flush();
         
         // prints out the character sequences
         System.out.println(chw.toString());
               
      } catch(Exception e) {
         // for any error
         e.printStackTrace();
      } finally {
         // releases all system resources from writer
         if(chw!=null)
            chw.close();
      }
   }
}

Let us compile and run the above program, this will produce the following result −

ABCDEFGHIJKLMNOPQRSTUVWXYZ
java_io_chararraywriter.htm
Advertisements