Home »
Java programming language
Java CharArrayWriter close() Method with Example
CharArrayWriter Class close() method: Here, we are going to learn about the close() method of CharArrayWriter Class with its syntax and example.
Submitted by Preeti Jain, on March 27, 2020
CharArrayWriter Class close() method
- close() method is available in java.io package.
- close() method is used to close this stream but it does not free the buffer.
- close() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- close() method does not throw an exception at the time of closing the stream.
Syntax:
public void close();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of the method is void, it returns nothing.
Example:
// Java program to demonstrate the example
// of void close() method of CharArrayWriter
import java.io.*;
public class CloseOfCAW {
public static void main(String[] args) {
CharSequence cs = "Java World!!!";
CharArrayWriter caw = null;
try {
// Instantiates CharArrayWriter
caw = new CharArrayWriter();
// By using close() method isto
// close the CharArrayWriter
caw.close();
// By using append() method is to
// append cs to the caw still closing
// the stream
caw.append(cs);
// By using toString() method is
// to represent the caw as a string
System.out.print("caw.toString(): " + caw.toString());
} catch (Exception ex) {
System.out.println(ex.toString());
} finally {
if (caw != null)
caw.close();
}
}
}
Output
caw.toString(): Java World!!!