Java.io.CharArrayWriter.close() Method
Advertisements
Description
The java.io.CharArrayWriter.close() method closes the stream, but does not release the buffer.
Declaration
Following is the declaration for java.io.CharArrayWriter.close() method:
public void close()
Parameters
NA
Return Value
This method does not return any value.
Exception
NA
Example
The following example shows the usage of java.io.CharArrayWriter.close() method.
package com.tutorialspoint;
import java.io.CharArrayWriter;
public class CharArrayWriterAppendDemo {
public static void main(String[] args) {
CharArrayWriter chw = null;
try{
// create character array writer
chw = new CharArrayWriter();
// declare character sequence
CharSequence csq = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
// closes the stream
chw.close();
// append character sequence to the writer
chw.append(csq);
// 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