Home »
Java programming language
Java StringWriter close() Method with Example
StringWriter Class close() method: Here, we are going to learn about the close() method of StringWriter Class with its syntax and example.
Submitted by Preeti Jain, on April 25, 2020
StringWriter Class close() method
- close() method is available in java.io package.
- close() method is used to close this StringWriter stream. When we call any of its methods after closing the stream will not result from an exception.
- 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 may throw an exception at the time of closing the stream.
IOException: This exception may throw when getting any input/output error while performing.
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 StringWriter
import java.io.*;
public class CloseOfFSW {
public static void main(String[] args) throws Exception {
StringWriter str_w = null;
String str = "Java World!!!";
try {
// Instantiates StringWriter
str_w = new StringWriter();
// By using close() method is to
// close the stream
str_w.close();
// when we call write() method
// after closing the stream will not
// result an exception
str_w.write(str);
System.out.println("str_w.toString(): " + str_w.toString());
} catch (Exception ex) {
System.out.println(ex.toString());
} finally {
// with the help of this block is to
// free all necessary resources linked
// with the stream
if (str_w != null) {
str_w.close();
}
}
}
}
Output
str_w.toString(): Java World!!!